[AAI-217 Amsterdam] Remove the att references in 57/8957/1
authorVenkata Harish K Kajur <vk250x@att.com>
Mon, 28 Aug 2017 18:08:13 +0000 (14:08 -0400)
committerVenkata Harish K Kajur <vk250x@att.com>
Mon, 28 Aug 2017 18:08:48 +0000 (14:08 -0400)
the schema and core files

Change-Id: Id1b3469ba298b2137665e8ad16b4d74121d434a2
Signed-off-by: Venkata Harish K Kajur <vk250x@att.com>
23 files changed:
aai-core/src/main/java/org/openecomp/aai/dbgen/SchemaGenerator.java
aai-core/src/main/java/org/openecomp/aai/util/StoreNotificationEvent.java
aai-core/src/test/java/org/openecomp/aai/parsers/uri/URIToDBKeyTest.java
aai-core/src/test/java/org/openecomp/aai/parsers/uri/URIToExtensionInformationTest.java [deleted file]
aai-core/src/test/resources/bundleconfig-local/etc/oxm/aai_oxm_v10.xml
aai-core/src/test/resources/bundleconfig-local/etc/oxm/aai_oxm_v11.xml
aai-core/src/test/resources/bundleconfig-local/etc/oxm/aai_oxm_v9.xml
aai-core/src/test/resources/org/openecomp/aai/introspection/aai_oxm_v10.xml
aai-core/src/test/resources/org/openecomp/aai/introspection/aai_oxm_v11.xml
aai-schema/src/main/resources/aai_schema/aai_schema_v10.xsd
aai-schema/src/main/resources/aai_schema/aai_schema_v11.xsd
aai-schema/src/main/resources/aai_schema/aai_schema_v9.xsd
aai-schema/src/main/resources/aai_swagger_html/aai_swagger_v10.html
aai-schema/src/main/resources/aai_swagger_html/aai_swagger_v11.html
aai-schema/src/main/resources/aai_swagger_html/aai_swagger_v9.html
aai-schema/src/main/resources/aai_swagger_yaml/aai_swagger_v10.yaml
aai-schema/src/main/resources/aai_swagger_yaml/aai_swagger_v11.yaml
aai-schema/src/main/resources/aai_swagger_yaml/aai_swagger_v8.yaml
aai-schema/src/main/resources/aai_swagger_yaml/aai_swagger_v9.yaml
aai-schema/src/main/resources/oxm/aai_oxm_v10.xml
aai-schema/src/main/resources/oxm/aai_oxm_v11.xml
aai-schema/src/main/resources/oxm/aai_oxm_v8.xml
aai-schema/src/main/resources/oxm/aai_oxm_v9.xml

index c3f55cd..9f85d02 100644 (file)
@@ -186,28 +186,6 @@ public class SchemaGenerator{
        LOGGER.info(imsg);
        
         graphMgmt.commit();
-        if (addDefaultCR) {
-               if (!graph.traversal().V().has("cloud-owner", "att-aic").has("cloud-region-id", "AAIAIC25").hasNext()) {
-               imsg = "Adding default cloud region to graph...";
-               System.out.println(imsg);
-               LOGGER.info(imsg);
-                       final Vertex cloudRegion = graph.addVertex();
-       
-                       final String ts = String.valueOf(System.currentTimeMillis() / 1000L);
-       
-                       cloudRegion.property("aai-node-type", "cloud-region");
-                       cloudRegion.property("cloud-owner", "att-aic");
-                       cloudRegion.property("cloud-region-id", "AAIAIC25");
-                       cloudRegion.property("cloud-region-version", "2.5");
-                       cloudRegion.property("complex-name", "AAIAIC25");
-                       cloudRegion.property("aai-created-ts", ts);
-                       cloudRegion.property("resource-version", ts);
-                       cloudRegion.property("source-of-truth", "aai-schema-loader");
-                       cloudRegion.property("last-mod-source-of-truth", "aai-schema-loader");
-                       cloudRegion.property(AAIProperties.AAI_URI, "/cloud-infrastructure/cloud-regions/cloud-region/att-aic/AAIAIC25");
-                       graph.tx().commit();
-               }
-               }
     }// End of loadSchemaIntoTitan()
 
 }
index 2d47d38..29fa69d 100644 (file)
@@ -147,7 +147,7 @@ public class StoreNotificationEvent {
                        throw new AAIException("AAI_7350");
                }
 
-               DynamicEntity notificationEvent = notificationJaxbContext.getDynamicType("inventory.aai.att.com." + notificationVersion + ".NotificationEvent").newDynamicEntity();
+               DynamicEntity notificationEvent = notificationJaxbContext.getDynamicType("inventory.aai.onap.org." + notificationVersion + ".NotificationEvent").newDynamicEntity();
 
                if (eventHeader.get("id") == null) {
                        eventHeader.set("id", genDate2() + "-" + UUID.randomUUID().toString());
index 59c5dd4..5ba4711 100644 (file)
@@ -62,47 +62,6 @@ public class URIToDBKeyTest {
                System.setProperty("AJSC_HOME", ".");
                System.setProperty("BUNDLECONFIG_DIR", "src/test/resources/bundleconfig-local");
        }
-       
-       /**
-        * Uri.
-        *
-        * @throws JAXBException the JAXB exception
-        * @throws AAIException the AAI exception
-        * @throws IllegalArgumentException the illegal argument exception
-        * @throws UnsupportedEncodingException the unsupported encoding exception
-        */
-       @Test
-    public void uri() throws JAXBException, AAIException, IllegalArgumentException, UnsupportedEncodingException {
-               URI uri = UriBuilder.fromPath("/aai/" + loader.getVersion() + "/cloud-infrastructure/tenants/tenant/key1/vservers/vserver/key2/l-interfaces/l-interface/key3").build();
-               URIToDBKey parse = new URIToDBKey(loader, uri);
-               Object result = parse.getResult();
-
-               String expected = "cloud-region/att-aic/AAIAIC25/tenant/key1/vserver/key2/l-interface/key3";
-               
-               assertEquals("blah", expected, result);
-               
-       }
-       
-       /**
-        * Uri no version.
-        *
-        * @throws JAXBException the JAXB exception
-        * @throws AAIException the AAI exception
-        * @throws IllegalArgumentException the illegal argument exception
-        * @throws UnsupportedEncodingException the unsupported encoding exception
-        */
-       @Test
-    public void uriNoVersion() throws JAXBException, AAIException, IllegalArgumentException, UnsupportedEncodingException {
-               URI uri = UriBuilder.fromPath("/cloud-infrastructure/tenants/tenant/key1/vservers/vserver/key2/l-interfaces/l-interface/key3").build();
-               URIToDBKey parse = new URIToDBKey(loader, uri);
-               Object result = parse.getResult();
-               
-               String expected = "cloud-region/att-aic/AAIAIC25/tenant/key1/vserver/key2/l-interface/key3";
-               
-               assertEquals("blah", expected, result);
-               
-       }
-       
 
        /**
         * Bad URI.
@@ -148,17 +107,6 @@ public class URIToDBKeyTest {
         * @throws IllegalArgumentException the illegal argument exception
         * @throws UnsupportedEncodingException the unsupported encoding exception
         */
-       @Test
-    public void startsWithValidNamespace() throws JAXBException, AAIException, IllegalArgumentException, UnsupportedEncodingException {
-               URI uri = UriBuilder.fromPath("/aai/" + loader.getVersion() + "/cloud-infrastructure/tenants/tenant/key1/vservers/vserver/key2/l-interfaces/l-interface/key3").build();
-               
-               URIToDBKey parse = new URIToDBKey(loader, uri);
-               Object result = parse.getResult();
-
-               String expected = "cloud-region/att-aic/AAIAIC25/tenant/key1/vserver/key2/l-interface/key3";
-               
-               assertEquals("blah", expected, result);
-       }
        
        /**
         * Naming exceptions.
diff --git a/aai-core/src/test/java/org/openecomp/aai/parsers/uri/URIToExtensionInformationTest.java b/aai-core/src/test/java/org/openecomp/aai/parsers/uri/URIToExtensionInformationTest.java
deleted file mode 100644 (file)
index 4250fc8..0000000
+++ /dev/null
@@ -1,105 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * org.openecomp.aai
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *      http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-
-package org.openecomp.aai.parsers.uri;
-
-import static org.junit.Assert.assertEquals;
-
-import java.io.UnsupportedEncodingException;
-import java.net.URI;
-
-import javax.ws.rs.core.UriBuilder;
-import javax.xml.bind.JAXBException;
-
-import org.junit.BeforeClass;
-import org.junit.Ignore;
-import org.junit.Test;
-
-import org.openecomp.aai.exceptions.AAIException;
-import org.openecomp.aai.introspection.Loader;
-import org.openecomp.aai.introspection.LoaderFactory;
-import org.openecomp.aai.introspection.ModelType;
-import org.openecomp.aai.introspection.Version;
-import org.openecomp.aai.restcore.HttpMethod;
-
-@Ignore
-public class URIToExtensionInformationTest {
-
-       private Loader v8Loader = LoaderFactory.createLoaderForVersion(ModelType.MOXY, Version.v8);
-       
-       /**
-        * Configure.
-        */
-       @BeforeClass
-       public static void configure() {
-               System.setProperty("AJSC_HOME", ".");
-               System.setProperty("BUNDLECONFIG_DIR", "src/test/resources/bundleconfig-local");
-       }
-       
-       /**
-        * Vservers V 7.
-        *
-        * @throws JAXBException the JAXB exception
-        * @throws AAIException the AAI exception
-        * @throws IllegalArgumentException the illegal argument exception
-        * @throws UnsupportedEncodingException the unsupported encoding exception
-        */
-       @Test
-    public void vserversV8() throws JAXBException, AAIException, IllegalArgumentException, UnsupportedEncodingException {
-               URI uri = UriBuilder.fromPath("/aai/" + v8Loader.getVersion() + "/cloud-infrastructure/cloud-regions/cloud-region/att-aic/AAIAIC25/tenants/tenant/key1/vservers/vserver/key2").build();
-               URIToExtensionInformation parse = new URIToExtensionInformation(v8Loader, uri);
-               
-               String namespace = "cloudInfrastructure";
-               String preMethodName = "DynamicAddCloudInfrastructureCloudRegionsCloudRegionTenantsTenantVserversVserverPreProc";
-               String postMethodName = "DynamicAddCloudInfrastructureCloudRegionsCloudRegionTenantsTenantVserversVserverPostProc";
-               String topLevel = "CloudRegion";
-               testSpec(parse, HttpMethod.PUT, namespace, preMethodName, postMethodName, topLevel);
-
-       }
-
-       /**
-        * Test spec.
-        *
-        * @param info the info
-        * @param httpMethod the http method
-        * @param namespace the namespace
-        * @param preMethodName the pre method name
-        * @param postMethodName the post method name
-        * @param topLevel the top level
-        */
-       private void testSpec(URIToExtensionInformation info, HttpMethod httpMethod, String namespace, String preMethodName, String postMethodName, String topLevel) {
-               
-
-               String namespaceResult = info.getNamespace();
-               String methodNameResult = info.getMethodName(httpMethod, true);
-               
-               assertEquals("namespace", namespace, namespaceResult);
-               assertEquals("preprocess method name", preMethodName, methodNameResult);
-               methodNameResult = info.getMethodName(httpMethod, false);
-
-               assertEquals("postprocess method name", postMethodName, methodNameResult);
-
-               String topLevelResult = info.getTopObject();
-               
-               assertEquals("topLevel", topLevel, topLevelResult);
-       }
-       
-       
-}
index ba6bb24..568b2ad 100644 (file)
                                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.openecomp.org.v10.RelationshipList" />
                        </java-attributes>
                        <xml-properties>
-                               <xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&amp;Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&amp;T's AIC." />
+                               <xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation." />
                                <xml-property name="indexedProps" value="cloud-owner,cloud-region-id,cloud-type,owner-defined-type" />
                                <xml-property name="nameProps" value="owner-defined-type" />
                                <xml-property name="container" value="cloud-regions" />
index 5bff420..1c49cf1 100644 (file)
@@ -30,7 +30,6 @@
                                <xml-element java-attribute="search" name="search" type="inventory.aai.onap.org.v11.Search" />
                                <xml-element java-attribute="actions" name="actions" type="inventory.aai.onap.org.v11.Actions" />
                                <xml-element java-attribute="cloudInfrastructure" name="cloud-infrastructure" type="inventory.aai.onap.org.v11.CloudInfrastructure" />
-                               <xml-element java-attribute="licenseManagement" name="license-management" type="inventory.aai.onap.org.v11.LicenseManagement" />
                                <xml-element java-attribute="business" name="business" type="inventory.aai.onap.org.v11.Business" />
                                <xml-element java-attribute="serviceDesignAndCreation" name="service-design-and-creation" type="inventory.aai.onap.org.v11.ServiceDesignAndCreation" />
                                <xml-element java-attribute="network" name="network" type="inventory.aai.onap.org.v11.Network" />
                        <java-attributes>
                                <xml-element java-attribute="cloudOwner" name="cloud-owner" required="true" type="java.lang.String" xml-key="true">
                                        <xml-properties>
-                                               <xml-property name="description" value="Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname" />
+                                               <xml-property name="description" value="Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname" />
                                        </xml-properties>
                                </xml-element>
                                <xml-element java-attribute="cloudRegionId" name="cloud-region-id" required="true" type="java.lang.String" xml-key="true">
                                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v11.RelationshipList" />
                        </java-attributes>
                        <xml-properties>
-                               <xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&amp;Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&amp;T's AIC." />
+                               <xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation." />
                                <xml-property name="indexedProps" value="cloud-owner,cloud-region-id,cloud-type,owner-defined-type" />
                                <xml-property name="nameProps" value="owner-defined-type" />
                                <xml-property name="container" value="cloud-regions" />
                        </xml-properties>
                </java-type>
 
-               <java-type name="LicenseManagement">
-                       <xml-root-element name="license-management" />
-                       <java-attributes>
-                               <xml-element java-attribute="licenseKeyResources" name="license-key-resources" type="inventory.aai.onap.org.v11.LicenseKeyResources" />
-                       </java-attributes>
-               </java-type>
-
-               <java-type name="LicenseKeyResources">
-                       <xml-root-element name="license-key-resources" />
-                       <java-attributes>
-                               <xml-element container-type="java.util.ArrayList" java-attribute="licenseKeyResource" name="license-key-resource" type="inventory.aai.onap.org.v11.LicenseKeyResource" />
-                       </java-attributes>
-               </java-type>
-
-               <java-type name="LicenseKeyResource">
-                       <xml-root-element name="license-key-resource" />
-                       <java-attributes>
-                               <xml-element java-attribute="attUuid" name="att-uuid" required="true" type="java.lang.String" xml-key="true" />
-                               <xml-element java-attribute="assignmentType" name="assignment-type" type="java.lang.String" />
-                               <xml-element java-attribute="assignmentStatus" name="assignment-status" type="java.lang.String" />
-                               <xml-element java-attribute="assignmentGroupUuid" name="assignment-group-uuid" required="true" type="java.lang.String" />
-                               <xml-element java-attribute="assignmentDate" name="assignment-date" type="java.lang.String" />
-                               <xml-element java-attribute="name" name="name" type="java.lang.String" />
-                               <xml-element java-attribute="modelUuid" name="model-uuid" type="java.lang.String" />
-                               <xml-element java-attribute="modelVersion" name="model-version" type="java.lang.String" />
-                               <xml-element java-attribute="licenseKey" name="license-key" type="java.lang.String" />
-                               <xml-element java-attribute="licenseKeyFileUrl" name="license-key-file-url" type="java.lang.String" />
-                               <xml-element container-type="java.util.ArrayList" java-attribute="supplierReleaseList" name="supplier-release-list" type="java.lang.String" />
-                               <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
-                                       <xml-properties>
-                                               <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete." />
-                                       </xml-properties>
-                               </xml-element>
-                               <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v11.RelationshipList" />
-                       </java-attributes>
-                       <xml-properties>
-                               <xml-property name="description" value="OBSOLETE OBJECT:  do not use" />
-                               <xml-property name="nameProps" value="name" />
-                               <xml-property name="indexedProps" value="assignment-group-uuid,att-uuid,name" />
-                               <xml-property name="uniqueProps" value="att-uuid" />
-                               <xml-property name="container" value="license-key-resources" />
-                               <xml-property name="namespace" value="license-management" />
-                       </xml-properties>
-               </java-type>
-
                <java-type name="Business">
                        <xml-properties>
                                <xml-property name="description" value="Namespace for business related constructs" />
                <java-type name="VnfImage">
                        <xml-root-element name="vnf-image" />
                        <java-attributes>
-                               <xml-element java-attribute="attUuid" name="att-uuid" required="true" type="java.lang.String" xml-key="true">
+                               <xml-element java-attribute="vnfImageUuid" name="vnf-image-uuid" required="true" type="java.lang.String" xml-key="true">
                                        <xml-properties>
                                                <xml-property name="description" value="Unique ID of this asset" />
                                        </xml-properties>
                        </java-attributes>
                        <xml-properties>
                                <xml-property name="description" value="Image object that pertain to a VNF that doesn't have associated vservers.  This is a kludge." />
-                               <xml-property name="indexedProps" value="application,att-uuid,application-vendor,application-version" />
-                               <xml-property name="uniqueProps" value="att-uuid" />
+                               <xml-property name="indexedProps" value="application,vnf-image-uuid,application-vendor,application-version" />
+                               <xml-property name="uniqueProps" value="vnf-image-uuid" />
                                <xml-property name="container" value="vnf-images" />
                                <xml-property name="namespace" value="service-design-and-creation" />
                        </xml-properties>
                                </xml-element>
                                <xml-element java-attribute="ipVersion" name="ip-version" type="java.lang.String">
                                        <xml-properties>
-                                               <xml-property name="description" value="v4, v6, or ds for dual stack (should be att-ip-version)" />
+                                               <xml-property name="description" value="v4, v6, or ds for dual stack" />
                                        </xml-properties>
                                </xml-element>
                                <xml-element java-attribute="routingProtocol" name="routing-protocol" type="java.lang.String">
index bbe5a8f..22c0d4a 100644 (file)
                                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.openecomp.org.v9.RelationshipList" />
                        </java-attributes>
                        <xml-properties>
-                               <xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&amp;Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&amp;T's AIC." />
+                               <xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation." />
                                <xml-property name="indexedProps" value="cloud-owner,cloud-region-id,cloud-type,owner-defined-type" />
                                <xml-property name="nameProps" value="owner-defined-type" />
                                <xml-property name="container" value="cloud-regions" />
index 712e7ca..728e4b4 100644 (file)
                                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.openecomp.org.v10.RelationshipList" />
                        </java-attributes>
                        <xml-properties>
-                               <xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&amp;Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&amp;T's AIC." />
+                               <xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation." />
                                <xml-property name="indexedProps" value="cloud-owner,cloud-region-id,cloud-type,owner-defined-type" />
                                <xml-property name="nameProps" value="owner-defined-type" />
                                <xml-property name="container" value="cloud-regions" />
index e0b47a0..a489997 100644 (file)
@@ -30,7 +30,6 @@
                                <xml-element java-attribute="search" name="search" type="inventory.aai.onap.org.v11.Search" />
                                <xml-element java-attribute="actions" name="actions" type="inventory.aai.onap.org.v11.Actions" />
                                <xml-element java-attribute="cloudInfrastructure" name="cloud-infrastructure" type="inventory.aai.onap.org.v11.CloudInfrastructure" />
-                               <xml-element java-attribute="licenseManagement" name="license-management" type="inventory.aai.onap.org.v11.LicenseManagement" />
                                <xml-element java-attribute="business" name="business" type="inventory.aai.onap.org.v11.Business" />
                                <xml-element java-attribute="serviceDesignAndCreation" name="service-design-and-creation" type="inventory.aai.onap.org.v11.ServiceDesignAndCreation" />
                                <xml-element java-attribute="network" name="network" type="inventory.aai.onap.org.v11.Network" />
                        <java-attributes>
                                <xml-element java-attribute="cloudOwner" name="cloud-owner" required="true" type="java.lang.String" xml-key="true">
                                        <xml-properties>
-                                               <xml-property name="description" value="Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname" />
+                                               <xml-property name="description" value="Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname" />
                                        </xml-properties>
                                </xml-element>
                                <xml-element java-attribute="cloudRegionId" name="cloud-region-id" required="true" type="java.lang.String" xml-key="true">
                                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v11.RelationshipList" />
                        </java-attributes>
                        <xml-properties>
-                               <xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&amp;Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&amp;T's AIC." />
+                               <xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation." />
                                <xml-property name="indexedProps" value="cloud-owner,cloud-region-id,cloud-type,owner-defined-type" />
                                <xml-property name="nameProps" value="owner-defined-type" />
                                <xml-property name="container" value="cloud-regions" />
                        </xml-properties>
                </java-type>
 
-               <java-type name="LicenseManagement">
-                       <xml-root-element name="license-management" />
-                       <java-attributes>
-                               <xml-element java-attribute="licenseKeyResources" name="license-key-resources" type="inventory.aai.onap.org.v11.LicenseKeyResources" />
-                       </java-attributes>
-               </java-type>
-
-               <java-type name="LicenseKeyResources">
-                       <xml-root-element name="license-key-resources" />
-                       <java-attributes>
-                               <xml-element container-type="java.util.ArrayList" java-attribute="licenseKeyResource" name="license-key-resource" type="inventory.aai.onap.org.v11.LicenseKeyResource" />
-                       </java-attributes>
-               </java-type>
-
-               <java-type name="LicenseKeyResource">
-                       <xml-root-element name="license-key-resource" />
-                       <java-attributes>
-                               <xml-element java-attribute="attUuid" name="att-uuid" required="true" type="java.lang.String" xml-key="true" />
-                               <xml-element java-attribute="assignmentType" name="assignment-type" type="java.lang.String" />
-                               <xml-element java-attribute="assignmentStatus" name="assignment-status" type="java.lang.String" />
-                               <xml-element java-attribute="assignmentGroupUuid" name="assignment-group-uuid" required="true" type="java.lang.String" />
-                               <xml-element java-attribute="assignmentDate" name="assignment-date" type="java.lang.String" />
-                               <xml-element java-attribute="name" name="name" type="java.lang.String" />
-                               <xml-element java-attribute="modelUuid" name="model-uuid" type="java.lang.String" />
-                               <xml-element java-attribute="modelVersion" name="model-version" type="java.lang.String" />
-                               <xml-element java-attribute="licenseKey" name="license-key" type="java.lang.String" />
-                               <xml-element java-attribute="licenseKeyFileUrl" name="license-key-file-url" type="java.lang.String" />
-                               <xml-element container-type="java.util.ArrayList" java-attribute="supplierReleaseList" name="supplier-release-list" type="java.lang.String" />
-                               <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
-                                       <xml-properties>
-                                               <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete." />
-                                       </xml-properties>
-                               </xml-element>
-                               <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v11.RelationshipList" />
-                       </java-attributes>
-                       <xml-properties>
-                               <xml-property name="description" value="OBSOLETE OBJECT:  do not use" />
-                               <xml-property name="nameProps" value="name" />
-                               <xml-property name="indexedProps" value="assignment-group-uuid,att-uuid,name" />
-                               <xml-property name="uniqueProps" value="att-uuid" />
-                               <xml-property name="container" value="license-key-resources" />
-                               <xml-property name="namespace" value="license-management" />
-                       </xml-properties>
-               </java-type>
-
                <java-type name="Business">
                        <xml-properties>
                                <xml-property name="description" value="Namespace for business related constructs" />
                <java-type name="VnfImage">
                        <xml-root-element name="vnf-image" />
                        <java-attributes>
-                               <xml-element java-attribute="attUuid" name="att-uuid" required="true" type="java.lang.String" xml-key="true">
+                               <xml-element java-attribute="vnfImageUuid" name="vnf-image-uuid" required="true" type="java.lang.String" xml-key="true">
                                        <xml-properties>
                                                <xml-property name="description" value="Unique ID of this asset" />
                                        </xml-properties>
                        </java-attributes>
                        <xml-properties>
                                <xml-property name="description" value="Image object that pertain to a VNF that doesn't have associated vservers.  This is a kludge." />
-                               <xml-property name="indexedProps" value="application,att-uuid,application-vendor,application-version" />
-                               <xml-property name="uniqueProps" value="att-uuid" />
+                               <xml-property name="indexedProps" value="application,vnf-image-uuid,application-vendor,application-version" />
+                               <xml-property name="uniqueProps" value="vnf-image-uuid" />
                                <xml-property name="container" value="vnf-images" />
                                <xml-property name="namespace" value="service-design-and-creation" />
                        </xml-properties>
                                </xml-element>
                                <xml-element java-attribute="ipVersion" name="ip-version" type="java.lang.String">
                                        <xml-properties>
-                                               <xml-property name="description" value="v4, v6, or ds for dual stack (should be att-ip-version)" />
+                                               <xml-property name="description" value="v4, v6, or ds for dual stack" />
                                        </xml-properties>
                                </xml-element>
                                <xml-element java-attribute="routingProtocol" name="routing-protocol" type="java.lang.String">
index 1fbdcf4..f44af72 100644 (file)
@@ -1681,7 +1681,7 @@ xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
     <xs:complexType>
       <xs:annotation>
         <xs:appinfo>
-          <annox:annotate target="class">@org.openecomp.aai.annotations.Metadata(description="cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&amp;Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&amp;T's AIC.",indexedProps="cloud-owner,cloud-region-id,cloud-type,owner-defined-type",nameProps="owner-defined-type",container="cloud-regions",namespace="cloud-infrastructure")</annox:annotate>
+          <annox:annotate target="class">@org.openecomp.aai.annotations.Metadata(description="cloud-region designates an installation of a cloud cluster or region or instantiation",indexedProps="cloud-owner,cloud-region-id,cloud-type,owner-defined-type",nameProps="owner-defined-type",container="cloud-regions",namespace="cloud-infrastructure")</annox:annotate>
         </xs:appinfo>
       </xs:annotation>
       <xs:sequence>
index ea73032..45d89fd 100644 (file)
@@ -1712,18 +1712,91 @@ xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
       </xs:sequence>
     </xs:complexType>
   </xs:element>
+  <xs:element name="auth-info-item">
+    <xs:complexType>
+      <xs:annotation>
+        <xs:appinfo>
+          <annox:annotate target="class">@org.openecomp.aai.annotations.Metadata(description="Persistent auth info.",indexedProps="auth-info-item-id,username,auth-url",searchable="auth-info-item-id,username,auth-url",dependentOn="cloud-region",container="auth-info-items")</annox:annotate>
+        </xs:appinfo>
+      </xs:annotation>
+      <xs:sequence>
+        <xs:element name="auth-info-item-id" type="xs:string">
+          <xs:annotation>
+            <xs:appinfo>
+              <annox:annotate target="field">@org.openecomp.aai.annotations.Metadata(isKey=true,description="Unique ID of auth-info-item.")</annox:annotate>
+            </xs:appinfo>
+          </xs:annotation>
+        </xs:element>
+        <xs:element name="cloud-domain" type="xs:string">
+          <xs:annotation>
+            <xs:appinfo>
+              <annox:annotate target="field">@org.openecomp.aai.annotations.Metadata(description="domain info for authentication.")</annox:annotate>
+            </xs:appinfo>
+          </xs:annotation>
+        </xs:element>
+        <xs:element name="username" type="xs:string">
+          <xs:annotation>
+            <xs:appinfo>
+              <annox:annotate target="field">@org.openecomp.aai.annotations.Metadata(description="user name of auth infomation to access VIM.")</annox:annotate>
+            </xs:appinfo>
+          </xs:annotation>
+        </xs:element>
+        <xs:element name="password" type="xs:string">
+          <xs:annotation>
+            <xs:appinfo>
+              <annox:annotate target="field">@org.openecomp.aai.annotations.Metadata(description="password of auth infomation to access VIM.")</annox:annotate>
+            </xs:appinfo>
+          </xs:annotation>
+        </xs:element>
+        <xs:element name="auth-url" type="xs:string">
+          <xs:annotation>
+            <xs:appinfo>
+              <annox:annotate target="field">@org.openecomp.aai.annotations.Metadata(description="authentication url of the cloud.")</annox:annotate>
+            </xs:appinfo>
+          </xs:annotation>
+        </xs:element>
+        <xs:element name="ssl-cacert" type="xs:string" minOccurs="0">
+          <xs:annotation>
+            <xs:appinfo>
+              <annox:annotate target="field">@org.openecomp.aai.annotations.Metadata(description="ca file content if enabled ssl on auth-url.")</annox:annotate>
+            </xs:appinfo>
+          </xs:annotation>
+        </xs:element>
+        <xs:element name="ssl-insecure" type="xs:boolean" minOccurs="0">
+          <xs:annotation>
+            <xs:appinfo>
+              <annox:annotate target="field">@org.openecomp.aai.annotations.Metadata(description="Whether to verify VIM's certificate.")</annox:annotate>
+            </xs:appinfo>
+          </xs:annotation>
+        </xs:element>
+        <xs:element ref="tns:relationship-list" minOccurs="0"/>
+      </xs:sequence>
+    </xs:complexType>
+  </xs:element>
+  <xs:element name="auth-info-items">
+    <xs:complexType>
+      <xs:annotation>
+        <xs:appinfo>
+          <annox:annotate target="class">@org.openecomp.aai.annotations.Metadata(description="Collection of persistent auth information to access to VIM.")</annox:annotate>
+        </xs:appinfo>
+      </xs:annotation>
+      <xs:sequence>
+        <xs:element ref="tns:auth-info-item" minOccurs="0" maxOccurs="unbounded"/>
+      </xs:sequence>
+    </xs:complexType>
+  </xs:element>
   <xs:element name="cloud-region">
     <xs:complexType>
       <xs:annotation>
         <xs:appinfo>
-          <annox:annotate target="class">@org.openecomp.aai.annotations.Metadata(description="cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&amp;Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&amp;T's AIC.",indexedProps="cloud-owner,cloud-region-id,cloud-type,owner-defined-type",nameProps="owner-defined-type",container="cloud-regions",namespace="cloud-infrastructure")</annox:annotate>
+          <annox:annotate target="class">@org.openecomp.aai.annotations.Metadata(description="cloud-region designates an installation of a cloud cluster or region or instantiation.",indexedProps="cloud-owner,cloud-region-id,cloud-type,owner-defined-type",nameProps="owner-defined-type",container="cloud-regions",namespace="cloud-infrastructure")</annox:annotate>
         </xs:appinfo>
       </xs:annotation>
       <xs:sequence>
         <xs:element name="cloud-owner" type="xs:string">
           <xs:annotation>
             <xs:appinfo>
-              <annox:annotate target="field">@org.openecomp.aai.annotations.Metadata(isKey=true,description="Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname")</annox:annotate>
+              <annox:annotate target="field">@org.openecomp.aai.annotations.Metadata(isKey=true,description="Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname")</annox:annotate>
             </xs:appinfo>
           </xs:annotation>
         </xs:element>
@@ -1800,6 +1873,7 @@ xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
         <xs:element ref="tns:oam-networks" minOccurs="0"/>
         <xs:element ref="tns:availability-zones" minOccurs="0"/>
         <xs:element ref="tns:relationship-list" minOccurs="0"/>
+        <xs:element ref="tns:auth-info-items" minOccurs="0"/>
       </xs:sequence>
     </xs:complexType>
   </xs:element>
@@ -2365,56 +2439,6 @@ xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
       </xs:sequence>
     </xs:complexType>
   </xs:element>
-  <xs:element name="license-key-resource">
-    <xs:complexType>
-      <xs:annotation>
-        <xs:appinfo>
-          <annox:annotate target="class">@org.openecomp.aai.annotations.Metadata(description="OBSOLETE OBJECT:  do not use",nameProps="name",indexedProps="assignment-group-uuid,att-uuid,name",uniqueProps="att-uuid",container="license-key-resources",namespace="license-management")</annox:annotate>
-        </xs:appinfo>
-      </xs:annotation>
-      <xs:sequence>
-        <xs:element name="att-uuid" type="xs:string">
-          <xs:annotation>
-            <xs:appinfo>
-              <annox:annotate target="field">@org.openecomp.aai.annotations.Metadata(isKey=true)</annox:annotate>
-            </xs:appinfo>
-          </xs:annotation>
-        </xs:element>
-        <xs:element name="assignment-type" type="xs:string" minOccurs="0"/>
-        <xs:element name="assignment-status" type="xs:string" minOccurs="0"/>
-        <xs:element name="assignment-group-uuid" type="xs:string"/>
-        <xs:element name="assignment-date" type="xs:string" minOccurs="0"/>
-        <xs:element name="name" type="xs:string" minOccurs="0"/>
-        <xs:element name="model-uuid" type="xs:string" minOccurs="0"/>
-        <xs:element name="model-version" type="xs:string" minOccurs="0"/>
-        <xs:element name="license-key" type="xs:string" minOccurs="0"/>
-        <xs:element name="license-key-file-url" type="xs:string" minOccurs="0"/>
-        <xs:element name="supplier-release-list" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
-        <xs:element name="resource-version" type="xs:string" minOccurs="0">
-          <xs:annotation>
-            <xs:appinfo>
-              <annox:annotate target="field">@org.openecomp.aai.annotations.Metadata(description="Used for optimistic concurrency.  Must be empty on create, valid on update and delete.")</annox:annotate>
-            </xs:appinfo>
-          </xs:annotation>
-        </xs:element>
-        <xs:element ref="tns:relationship-list" minOccurs="0"/>
-      </xs:sequence>
-    </xs:complexType>
-  </xs:element>
-  <xs:element name="license-key-resources">
-    <xs:complexType>
-      <xs:sequence>
-        <xs:element ref="tns:license-key-resource" minOccurs="0" maxOccurs="unbounded"/>
-      </xs:sequence>
-    </xs:complexType>
-  </xs:element>
-  <xs:element name="license-management">
-    <xs:complexType>
-      <xs:sequence>
-        <xs:element ref="tns:license-key-resources" minOccurs="0"/>
-      </xs:sequence>
-    </xs:complexType>
-  </xs:element>
   <xs:element name="connector">
     <xs:complexType>
       <xs:annotation>
@@ -3569,7 +3593,7 @@ xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
         <xs:element name="ip-version" type="xs:string" minOccurs="0">
           <xs:annotation>
             <xs:appinfo>
-              <annox:annotate target="field">@org.openecomp.aai.annotations.Metadata(description="v4, v6, or ds for dual stack (should be att-ip-version)")</annox:annotate>
+              <annox:annotate target="field">@org.openecomp.aai.annotations.Metadata(description="v4, v6, or ds for dual stack")</annox:annotate>
             </xs:appinfo>
           </xs:annotation>
         </xs:element>
@@ -6491,7 +6515,6 @@ xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
         <xs:element ref="tns:search" minOccurs="0"/>
         <xs:element ref="tns:actions" minOccurs="0"/>
         <xs:element ref="tns:cloud-infrastructure" minOccurs="0"/>
-        <xs:element ref="tns:license-management" minOccurs="0"/>
         <xs:element ref="tns:business" minOccurs="0"/>
         <xs:element ref="tns:service-design-and-creation" minOccurs="0"/>
         <xs:element ref="tns:network" minOccurs="0"/>
index c8c7af2..1984c3f 100644 (file)
@@ -1659,7 +1659,7 @@ xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
     <xs:complexType>
       <xs:annotation>
         <xs:appinfo>
-          <annox:annotate target="class">@org.openecomp.aai.annotations.Metadata(description="cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&amp;Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&amp;T's AIC.",indexedProps="cloud-owner,cloud-region-id,cloud-type,owner-defined-type",nameProps="owner-defined-type",container="cloud-regions",namespace="cloud-infrastructure")</annox:annotate>
+          <annox:annotate target="class">@org.openecomp.aai.annotations.Metadata(description="cloud-region designates an installation of a cloud cluster or region or instantiation.",indexedProps="cloud-owner,cloud-region-id,cloud-type,owner-defined-type",nameProps="owner-defined-type",container="cloud-regions",namespace="cloud-infrastructure")</annox:annotate>
         </xs:appinfo>
       </xs:annotation>
       <xs:sequence>
index 63e1170..1650366 100644 (file)
@@ -15,7 +15,7 @@
 <body>
 <div class="container">
     <h1>Active and Available Inventory REST API.</h1>
-    <p class="sw-info-version">Version: <span>v10</span></p>
+    <p class="sw-info-version">Version: <span>v11</span></p>
     <p><p>Copyright &copy; 2017 AT&amp;T Intellectual Property. All rights reserved.<br/>
 <br/>
 Licensed under the Creative Commons License, Attribution 4.0 Intl. (the &quot;License&quot;); you may not use this documentation except in compliance with the License.<br/>
@@ -3769,506 +3769,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     <tr>
                         <td><a href="#operation--network-vnfcs-vnfc--vnfc-name--relationship-list-relationship-delete">DELETE /network/vnfcs/vnfc/{vnfc-name}/relationship-list/relationship</a></td>
                         <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-get">GET /network/vpes</a></td>
-                        <td><p>returns vpes</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--get">GET /network/vpes/vpe/{vnf-id}</a></td>
-                        <td><p>returns vpe</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--put">PUT /network/vpes/vpe/{vnf-id}</a></td>
-                        <td><p>create or update an existing vpe</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--delete">DELETE /network/vpes/vpe/{vnf-id}</a></td>
-                        <td><p>delete an existing vpe</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--entitlements-get">GET /network/vpes/vpe/{vnf-id}/entitlements</a></td>
-                        <td><p>returns entitlements</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--get">GET /network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}</a></td>
-                        <td><p>returns entitlement</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--put">PUT /network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}</a></td>
-                        <td><p>create or update an existing entitlement</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--delete">DELETE /network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}</a></td>
-                        <td><p>delete an existing entitlement</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-get">GET /network/vpes/vpe/{vnf-id}/l-interfaces</a></td>
-                        <td><p>returns l-interfaces</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--get">GET /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}</a></td>
-                        <td><p>returns l-interface</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}</a></td>
-                        <td><p>create or update an existing l-interface</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}</a></td>
-                        <td><p>delete an existing l-interface</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get">GET /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>returns l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>create or update an existing l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>delete an existing l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get">GET /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>returns l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>create or update an existing l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>delete an existing l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-get">GET /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs</a></td>
-                        <td><p>returns sriov-vfs</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--get">GET /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</a></td>
-                        <td><p>returns sriov-vf</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</a></td>
-                        <td><p>create or update an existing sriov-vf</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</a></td>
-                        <td><p>delete an existing sriov-vf</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-get">GET /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans</a></td>
-                        <td><p>returns vlans</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--get">GET /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</a></td>
-                        <td><p>returns vlan</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</a></td>
-                        <td><p>create or update an existing vlan</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</a></td>
-                        <td><p>delete an existing vlan</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get">GET /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>returns l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>create or update an existing l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>delete an existing l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get">GET /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>returns l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>create or update an existing l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>delete an existing l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces</a></td>
-                        <td><p>returns lag-interfaces</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}</a></td>
-                        <td><p>returns lag-interface</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}</a></td>
-                        <td><p>create or update an existing lag-interface</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}</a></td>
-                        <td><p>delete an existing lag-interface</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces</a></td>
-                        <td><p>returns l-interfaces</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</a></td>
-                        <td><p>returns l-interface</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</a></td>
-                        <td><p>create or update an existing l-interface</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</a></td>
-                        <td><p>delete an existing l-interface</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>returns l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>create or update an existing l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>delete an existing l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>returns l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>create or update an existing l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>delete an existing l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs</a></td>
-                        <td><p>returns sriov-vfs</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</a></td>
-                        <td><p>returns sriov-vf</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</a></td>
-                        <td><p>create or update an existing sriov-vf</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</a></td>
-                        <td><p>delete an existing sriov-vf</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans</a></td>
-                        <td><p>returns vlans</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</a></td>
-                        <td><p>returns vlan</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</a></td>
-                        <td><p>create or update an existing vlan</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</a></td>
-                        <td><p>delete an existing vlan</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>returns l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>create or update an existing l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>delete an existing l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>returns l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>create or update an existing l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>delete an existing l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--licenses-get">GET /network/vpes/vpe/{vnf-id}/licenses</a></td>
-                        <td><p>returns licenses</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--get">GET /network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}</a></td>
-                        <td><p>returns license</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--put">PUT /network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}</a></td>
-                        <td><p>create or update an existing license</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--delete">DELETE /network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}</a></td>
-                        <td><p>delete an existing license</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
         </td>
                     </tr>
                     <tr>
@@ -107717,17 +107217,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-"></span>
-            <div id="operation--network-vpes-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-"></span>
+            <div id="operation--network-vpls-pes-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns vpes</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes</strong></h3>
+                    <div class="operation-summary">returns vpls-pes</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns vpes</p>
+                        <p>returns vpls-pes</p>
             
                     </section>
 
@@ -107753,7 +107253,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vpes">/vpes</a>
+                                                        <a class="json-schema-ref" href="#/definitions/vpls-pes">/vpls-pes</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -107781,17 +107281,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns vpe</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}</strong></h3>
+                    <div class="operation-summary">returns vpls-pe</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns vpe</p>
+                        <p>returns vpls-pe</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -107808,10 +107308,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -107822,102 +107321,12 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
-                                            </td>
-                                            <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 prov-status
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -107953,7 +107362,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vpe">/vpe</a>
+                                                        <a class="json-schema-ref" href="#/definitions/vpls-pe">/vpls-pe</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -107981,17 +107390,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing vpe</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}</strong></h3>
+                    <div class="operation-summary">create or update an existing vpls-pe</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing vpe</p>
+                        <p>create or update an existing vpls-pe</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -108000,13 +107409,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>vpe object that needs to be created or updated</p>
+                                                <p><p>vpls-pe object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/vpe">/vpe</a>
+                                            <a class="json-schema-ref" href="#/definitions/vpls-pe">/vpls-pe</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -108025,10 +107434,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -108070,17 +107478,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing vpe</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}</strong></h3>
+                    <div class="operation-summary">delete an existing vpls-pe</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing vpe</p>
+                        <p>delete an existing vpls-pe</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -108102,10 +107510,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -108163,17 +107570,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--entitlements-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--entitlements-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns entitlements</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/entitlements</strong></h3>
+                    <div class="operation-summary">returns lag-interfaces</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns entitlements</p>
+                        <p>returns lag-interfaces</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -108190,10 +107597,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -108206,25 +107612,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Alternate name of VNF.</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -108234,42 +107625,122 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/lag-interfaces">/lag-interfaces</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--get" class="swagger--panel-operation-get panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">returns lag-interface</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}</strong></h3>
+                        Tags:
+                            <a href="#tag-Network">Network</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>returns lag-interface</p>
+            
+                    </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                vnf-type
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                service-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -108281,10 +107752,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -108296,10 +107767,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -108335,7 +107806,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/entitlements">/entitlements</a>
+                                                        <a class="json-schema-ref" href="#/definitions/lag-interface">/lag-interface</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -108363,249 +107834,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns entitlement</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns entitlement</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID for the entitlement group the resource comes from, should be uuid.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID of an entitlement resource.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
-                                            </td>
-                                            <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/entitlement">/entitlement</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing entitlement</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}</strong></h3>
+                    <div class="operation-summary">create or update an existing lag-interface</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing entitlement</p>
+                        <p>create or update an existing lag-interface</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -108614,13 +107853,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>entitlement object that needs to be created or updated</p>
+                                                <p><p>lag-interface object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/entitlement">/entitlement</a>
+                                            <a class="json-schema-ref" href="#/definitions/lag-interface">/lag-interface</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -108639,26 +107878,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique ID for the entitlement group the resource comes from, should be uuid.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -108671,10 +107893,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                resource-uuid
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique ID of an entitlement resource.</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -108716,17 +107938,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing entitlement</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}</strong></h3>
+                    <div class="operation-summary">delete an existing lag-interface</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing entitlement</p>
+                        <p>delete an existing lag-interface</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -108748,26 +107970,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique ID for the entitlement group the resource comes from, should be uuid.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -108780,10 +107985,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                resource-uuid
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique ID of an entitlement resource.</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -108841,241 +108046,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID for the entitlement group the resource comes from, should be uuid.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID of an entitlement resource.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID for the entitlement group the resource comes from, should be uuid.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID of an entitlement resource.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l-interfaces</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -109098,10 +108073,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -109114,70 +108088,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -109189,10 +108119,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -109204,10 +108134,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -109271,11 +108201,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -109298,10 +108228,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -109317,7 +108246,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -109330,70 +108259,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>Name given to the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -109405,10 +108290,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -109420,10 +108305,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -109532,11 +108417,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -109576,10 +108461,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -109637,11 +108537,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -109669,10 +108569,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -109746,11 +108661,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -109773,10 +108688,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -109792,7 +108706,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -109805,10 +108719,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv4-address
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>IP address</p>
+                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -109821,70 +108735,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
+                                                l3-interface-ipv4-address
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>IP address</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -109896,10 +108766,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -109911,10 +108781,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -110068,11 +108938,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -110112,10 +108982,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -110189,11 +109074,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -110221,10 +109106,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -110314,11 +109214,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -110358,10 +109258,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -110435,11 +109350,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -110467,10 +109382,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -110544,11 +109474,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -110571,10 +109501,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -110590,7 +109519,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -110603,10 +109532,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv6-address
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>IP address</p>
+                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -110619,70 +109548,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
+                                                l3-interface-ipv6-address
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>IP address</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -110694,10 +109579,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -110709,10 +109594,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -110866,11 +109751,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -110910,10 +109795,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -110987,11 +109887,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -111019,10 +109919,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111112,11 +110027,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -111156,10 +110071,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111233,11 +110163,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -111265,10 +110195,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111342,11 +110287,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -111386,10 +110331,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111447,11 +110407,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -111479,10 +110439,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111540,11 +110515,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns sriov-vfs</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -111567,10 +110542,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111586,7 +110560,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111599,70 +110573,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>Name given to the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -111674,10 +110604,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -111689,10 +110619,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -111801,11 +110731,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -111828,10 +110758,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111847,7 +110776,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111860,10 +110789,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                pci-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
+                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111876,70 +110805,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
+                                                pci-id
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>PCI ID used to identify the sriov-vf</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -111951,10 +110836,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -111966,10 +110851,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -112138,11 +111023,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -112182,10 +111067,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -112259,11 +111159,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -112291,10 +111191,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -112384,11 +111299,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -112428,10 +111343,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -112505,11 +111435,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -112537,10 +111467,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -112614,11 +111559,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns vlans</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -112641,10 +111586,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -112660,7 +111604,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -112673,70 +111617,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>Name given to the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -112748,10 +111648,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -112763,10 +111663,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -112875,11 +111775,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -112902,10 +111802,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -112921,7 +111820,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -112934,10 +111833,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-interface
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>String that identifies the interface</p>
+                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -112950,70 +111849,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
+                                                vlan-interface
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>String that identifies the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -113025,10 +111880,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -113040,10 +111895,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -113182,11 +112037,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -113226,10 +112081,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -113303,11 +112173,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -113335,10 +112205,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -113428,11 +112313,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -113455,10 +112340,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -113474,7 +112358,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -113487,10 +112371,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-interface
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>String that identifies the interface</p>
+                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -113503,10 +112387,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv4-address
+                                                vlan-interface
                                             </td>
                                             <td>
-                                               <p>IP address</p>
+                                               <p>String that identifies the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -113519,70 +112403,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
+                                                l3-interface-ipv4-address
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>IP address</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -113594,10 +112434,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -113609,10 +112449,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -113796,11 +112636,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -113840,10 +112680,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -113933,11 +112788,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -113965,10 +112820,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -113984,144 +112838,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -114180,6 +112897,22 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                        <tr>
+                                            <td>
+                                                resource-version
+                                            </td>
+                                            <td>
+                                               <p>resource-version for concurrency</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -114211,23 +112944,35 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
                        <section class="sw-request-body">
                                 
                                     <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
                         </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>relationship object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
+                                </div>
+                            </div></div>
+                                        </div>
                             </section>
                         <section class="sw-request-params">
                             <table class="table">
@@ -114243,10 +112988,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -114336,19 +113096,24 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv6-address-list</p>
+                        <p>delete an existing relationship</p>
             
                     </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -114363,10 +113128,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -114411,7 +113191,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv6-address
+                                                l3-interface-ipv4-address
                                             </td>
                                             <td>
                                                <p>IP address</p>
@@ -114425,79 +113205,139 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                        Tags:
+                            <a href="#tag-Network">Network</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>returns l3-interface-ipv6-address-list</p>
+            
+                    </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                vnf-name
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Name of VNF.</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name2
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Alternate name of VNF.</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-type
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
+                                               <p>Name given to the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                service-id
+                                                vlan-interface
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>String that identifies the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                l3-interface-ipv6-address
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>IP address</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
@@ -114505,7 +113345,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 prov-status
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -114517,10 +113357,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>ID of interface</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-role
+                                            </td>
+                                            <td>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -114704,11 +113559,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -114748,10 +113603,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -114841,11 +113711,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -114873,10 +113743,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -114982,11 +113867,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -115026,10 +113911,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115119,11 +114019,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -115151,10 +114051,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115244,11 +114159,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -115288,10 +114203,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115365,11 +114295,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -115397,10 +114327,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115474,19 +114419,36 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns lag-interfaces</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns lag-interfaces</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>relationship object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
+                                </div>
+                            </div></div>
+                                        </div>
+                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -115501,10 +114463,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115517,77 +114478,181 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Alternate name of VNF.</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship</strong></h3>
+                        Tags:
+                            <a href="#tag-Network">Network</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>delete an existing relationship</p>
+            
+                    </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                            </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                vnf-type
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                service-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-get" class="swagger--panel-operation-get panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">returns p-interfaces</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces</strong></h3>
+                        Tags:
+                            <a href="#tag-Network">Network</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>returns p-interfaces</p>
+            
+                    </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
@@ -115595,22 +114660,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 prov-status
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -115646,7 +114696,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/lag-interfaces">/lag-interfaces</a>
+                                                        <a class="json-schema-ref" href="#/definitions/p-interfaces">/p-interfaces</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -115674,17 +114724,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns lag-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}</strong></h3>
+                    <div class="operation-summary">returns p-interface</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns lag-interface</p>
+                        <p>returns p-interface</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -115701,10 +114751,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115720,7 +114769,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115733,70 +114782,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -115821,51 +114810,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -115892,7 +114836,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/lag-interface">/lag-interface</a>
+                                                        <a class="json-schema-ref" href="#/definitions/p-interface">/p-interface</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -115920,17 +114864,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing lag-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}</strong></h3>
+                    <div class="operation-summary">create or update an existing p-interface</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing lag-interface</p>
+                        <p>create or update an existing p-interface</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -115939,13 +114883,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>lag-interface object that needs to be created or updated</p>
+                                                <p><p>p-interface object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/lag-interface">/lag-interface</a>
+                                            <a class="json-schema-ref" href="#/definitions/p-interface">/p-interface</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -115964,10 +114908,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115983,7 +114926,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116025,17 +114968,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing lag-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}</strong></h3>
+                    <div class="operation-summary">delete an existing p-interface</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing lag-interface</p>
+                        <p>delete an existing p-interface</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -116057,10 +115000,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116076,7 +115018,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116134,11 +115076,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l-interfaces</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -116161,10 +115103,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116180,7 +115121,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116193,10 +115134,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Name of VNF.</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -116208,10 +115149,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name2
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Alternate name of VNF.</p>
+                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -116221,49 +115162,130 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/l-interfaces">/l-interfaces</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--get" class="swagger--panel-operation-get panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">returns l-interface</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                        Tags:
+                            <a href="#tag-Network">Network</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>returns l-interface</p>
+            
+                    </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                vnf-type
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                service-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Name given to the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
@@ -116271,7 +115293,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 prov-status
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -116283,302 +115305,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l-interfaces">/l-interfaces</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l-interface</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
-                                            </td>
-                                            <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
+                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -116687,11 +115417,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -116731,10 +115461,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116750,7 +115479,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116808,11 +115537,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -116840,10 +115569,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116859,7 +115587,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116933,11 +115661,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -116960,10 +115688,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116979,7 +115706,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117024,70 +115751,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -117112,51 +115779,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 interface-id
@@ -117301,11 +115923,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -117345,10 +115967,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117364,7 +115985,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117438,11 +116059,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -117470,10 +116091,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117489,7 +116109,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117579,11 +116199,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -117623,10 +116243,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117642,7 +116261,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117716,11 +116335,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -117748,10 +116367,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117767,7 +116385,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117841,11 +116459,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -117868,10 +116486,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117887,7 +116504,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117932,70 +116549,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -118020,51 +116577,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 interface-id
@@ -118209,11 +116721,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -118253,10 +116765,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118272,7 +116783,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118346,11 +116857,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -118378,10 +116889,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118397,7 +116907,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118487,11 +116997,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -118531,10 +117041,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118550,7 +117059,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118624,11 +117133,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -118656,10 +117165,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118675,7 +117183,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118749,11 +117257,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -118793,10 +117301,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118812,7 +117319,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118870,11 +117377,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -118902,10 +117409,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118921,7 +117427,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118979,11 +117485,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns sriov-vfs</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -119006,10 +117512,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -119025,7 +117530,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -119054,70 +117559,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -119142,51 +117587,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 interface-id
@@ -119286,11 +117686,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -119313,10 +117713,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -119332,7 +117731,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -119377,70 +117776,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -119465,51 +117804,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 interface-id
@@ -119669,11 +117963,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -119713,10 +118007,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -119732,7 +118025,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -119806,11 +118099,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -119838,10 +118131,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -119857,7 +118149,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -119947,11 +118239,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -119991,10 +118283,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120010,7 +118301,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120084,11 +118375,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -120116,10 +118407,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120135,7 +118425,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120209,11 +118499,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns vlans</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -120236,10 +118526,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120255,7 +118544,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120284,70 +118573,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -120372,51 +118601,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 interface-id
@@ -120516,11 +118700,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -120543,10 +118727,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120562,7 +118745,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120607,70 +118790,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -120695,51 +118818,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 interface-id
@@ -120869,11 +118947,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -120913,10 +118991,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120932,7 +119009,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121006,11 +119083,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -121038,10 +119115,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121057,7 +119133,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121147,11 +119223,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -121174,10 +119250,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121193,7 +119268,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121254,70 +119329,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -121342,51 +119357,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 interface-id
@@ -121561,11 +119531,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -121605,10 +119575,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121624,7 +119593,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121714,11 +119683,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -121746,10 +119715,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121765,7 +119733,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121871,11 +119839,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -121915,10 +119883,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121934,7 +119901,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122024,11 +119991,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -122056,10 +120023,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122075,7 +120041,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122165,11 +120131,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -122192,10 +120158,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122211,7 +120176,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122272,10 +120237,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Name of VNF.</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -122287,10 +120252,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name2
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Alternate name of VNF.</p>
+                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -122302,10 +120267,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-type
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -122317,10 +120282,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                service-id
+                                                macaddr
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>MAC address for the interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -122332,10 +120297,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                network-name
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Name of the network</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -122347,14 +120312,14 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                vlan-id-inner
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>Inner VLAN tag</p>
                                         </td>
                                             <td>query</td>
                                             <td>
-                                               <span class="json-property-type">string</span>
+                                               <span class="json-property-type">integer</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
@@ -122362,10 +120327,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                vpn-id
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>This indicates the customers VPN ID associated with this vlan</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -122377,14 +120342,14 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-id
+                                                vlan-id-inner
                                             </td>
                                             <td>
-                                               <p>ID of interface</p>
+                                               <p>Inner VLAN tag</p>
                                         </td>
                                             <td>query</td>
                                             <td>
-                                               <span class="json-property-type">string</span>
+                                               <span class="json-property-type">integer</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
@@ -122392,10 +120357,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-role
+                                                neutron-network-id
                                             </td>
                                             <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
+                                               <p>Neutron network id of the interface that address belongs to</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -122407,10 +120372,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-id
+                                                neutron-subnet-id
                                             </td>
                                             <td>
-                                               <p>ID of interface</p>
+                                               <p>Neutron id of subnet that address belongs to</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -122420,109 +120385,179 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                        Tags:
+                            <a href="#tag-Network">Network</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>create or update an existing l3-interface-ipv6-address-list</p>
+            
+                    </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>l3-interface-ipv6-address-list object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
+                                </div>
+                            </div></div>
+                                        </div>
+                            </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                macaddr
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>MAC address for the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                network-name
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Name of the network</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vpn-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>This indicates the customers VPN ID associated with this vlan</p>
+                                               <p>Name given to the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
+                                                vlan-interface
                                             </td>
                                             <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
+                                               <p>String that identifies the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                neutron-subnet-id
+                                                l3-interface-ipv6-address
                                             </td>
                                             <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
+                                               <p>IP address</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -122534,29 +120569,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -122579,35 +120591,23 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv6-address-list</p>
+                        <p>delete an existing l3-interface-ipv6-address-list</p>
             
                     </section>
                        <section class="sw-request-body">
                                 
                                     <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
                         </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l3-interface-ipv6-address-list object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
-                                </div>
-                            </div></div>
-                                        </div>
                             </section>
                         <section class="sw-request-params">
                             <table class="table">
@@ -122623,10 +120623,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122642,7 +120641,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122701,6 +120700,22 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                        <tr>
+                                            <td>
+                                                resource-version
+                                            </td>
+                                            <td>
+                                               <p>resource-version for concurrency</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -122732,23 +120747,35 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv6-address-list</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
                        <section class="sw-request-body">
                                 
                                     <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
                         </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>relationship object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
+                                </div>
+                            </div></div>
+                                        </div>
                             </section>
                         <section class="sw-request-params">
                             <table class="table">
@@ -122764,10 +120791,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122783,7 +120809,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122842,22 +120868,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -122889,35 +120899,23 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
+                        <p>delete an existing relationship</p>
             
                     </section>
                        <section class="sw-request-body">
                                 
                                     <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
                         </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
                             </section>
                         <section class="sw-request-params">
                             <table class="table">
@@ -122933,10 +120931,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122952,7 +120949,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123042,23 +121039,35 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
                        <section class="sw-request-body">
                                 
                                     <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
                         </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>relationship object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
+                                </div>
+                            </div></div>
+                                        </div>
                             </section>
                         <section class="sw-request-params">
                             <table class="table">
@@ -123074,10 +121083,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123093,7 +121101,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123136,22 +121144,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -123183,35 +121175,23 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
+                        <p>delete an existing relationship</p>
             
                     </section>
                        <section class="sw-request-body">
                                 
                                     <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
                         </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
                             </section>
                         <section class="sw-request-params">
                             <table class="table">
@@ -123227,10 +121207,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123246,7 +121225,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123320,23 +121299,35 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
                        <section class="sw-request-body">
                                 
                                     <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
                         </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>relationship object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
+                                </div>
+                            </div></div>
+                                        </div>
                             </section>
                         <section class="sw-request-params">
                             <table class="table">
@@ -123352,10 +121343,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123371,7 +121361,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123382,12 +121372,72 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/relationship-list/relationship</strong></h3>
+                        Tags:
+                            <a href="#tag-Network">Network</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>delete an existing relationship</p>
+            
+                    </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                            </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123400,10 +121450,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-interface
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>String that identifies the interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123445,11 +121495,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -123489,15557 +121539,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--licenses-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--licenses-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns licenses</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/licenses</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns licenses</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
-                                            </td>
-                                            <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/licenses">/licenses</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns license</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns license</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID for the license group the resource belongs to, should be uuid.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID of a license resource.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
-                                            </td>
-                                            <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/license">/license</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing license</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing license</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>license object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/license">/license</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID for the license group the resource belongs to, should be uuid.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID of a license resource.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing license</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing license</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID for the license group the resource belongs to, should be uuid.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID of a license resource.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID for the license group the resource belongs to, should be uuid.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID of a license resource.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID for the license group the resource belongs to, should be uuid.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID of a license resource.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-"></span>
-            <div id="operation--network-vpls-pes-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns vpls-pes</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns vpls-pes</p>
-            
-                    </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vpls-pes">/vpls-pes</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns vpls-pe</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns vpls-pe</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vpls-pe">/vpls-pe</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing vpls-pe</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing vpls-pe</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>vpls-pe object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/vpls-pe">/vpls-pe</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing vpls-pe</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing vpls-pe</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns lag-interfaces</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns lag-interfaces</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/lag-interfaces">/lag-interfaces</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns lag-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns lag-interface</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/lag-interface">/lag-interface</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing lag-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing lag-interface</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>lag-interface object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/lag-interface">/lag-interface</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing lag-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing lag-interface</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l-interfaces</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l-interfaces</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l-interfaces">/l-interfaces</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l-interface</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l-interface">/l-interface</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing l-interface</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l-interface object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l-interface">/l-interface</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing l-interface</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-subnet-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l3-interface-ipv4-address-list object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-subnet-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l3-interface-ipv6-address-list object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns sriov-vfs</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns sriov-vfs</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/sriov-vfs">/sriov-vfs</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns sriov-vf</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                pci-id
-                                            </td>
-                                            <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vf-vlan-filter
-                                            </td>
-                                            <td>
-                                               <p>This metadata provides option to specify list of VLAN filters applied on VF to pass the traffic to VM.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vf-mac-filter
-                                            </td>
-                                            <td>
-                                               <p>When MAC filters are specified, VF-agent service configures VFs to do MAC level filtering before the traffic is passed to VM.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vf-vlan-strip
-                                            </td>
-                                            <td>
-                                               <p>When this field is set to true, VF will configured to strip the outer TAG before the traffic is passed to VM.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">boolean</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/sriov-vf">/sriov-vf</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing sriov-vf</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>sriov-vf object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/sriov-vf">/sriov-vf</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                pci-id
-                                            </td>
-                                            <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing sriov-vf</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                pci-id
-                                            </td>
-                                            <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                pci-id
-                                            </td>
-                                            <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                pci-id
-                                            </td>
-                                            <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns vlans</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns vlans</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vlans">/vlans</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns vlan</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vpn-id
-                                            </td>
-                                            <td>
-                                               <p>This indicates the customers VPN ID associated with this vlan</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vlan">/vlan</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing vlan</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>vlan object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/vlan">/vlan</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing vlan</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vpn-id
-                                            </td>
-                                            <td>
-                                               <p>This indicates the customers VPN ID associated with this vlan</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-subnet-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l3-interface-ipv4-address-list object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vpn-id
-                                            </td>
-                                            <td>
-                                               <p>This indicates the customers VPN ID associated with this vlan</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-subnet-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l3-interface-ipv6-address-list object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns p-interfaces</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns p-interfaces</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/p-interfaces">/p-interfaces</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns p-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns p-interface</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/p-interface">/p-interface</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing p-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing p-interface</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>p-interface object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/p-interface">/p-interface</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing p-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing p-interface</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l-interfaces</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l-interfaces</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l-interfaces">/l-interfaces</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l-interface</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l-interface">/l-interface</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing l-interface</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l-interface object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l-interface">/l-interface</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing l-interface</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-subnet-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l3-interface-ipv4-address-list object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-subnet-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l3-interface-ipv6-address-list object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns sriov-vfs</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns sriov-vfs</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/sriov-vfs">/sriov-vfs</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns sriov-vf</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                pci-id
-                                            </td>
-                                            <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vf-vlan-filter
-                                            </td>
-                                            <td>
-                                               <p>This metadata provides option to specify list of VLAN filters applied on VF to pass the traffic to VM.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vf-mac-filter
-                                            </td>
-                                            <td>
-                                               <p>When MAC filters are specified, VF-agent service configures VFs to do MAC level filtering before the traffic is passed to VM.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vf-vlan-strip
-                                            </td>
-                                            <td>
-                                               <p>When this field is set to true, VF will configured to strip the outer TAG before the traffic is passed to VM.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">boolean</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/sriov-vf">/sriov-vf</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing sriov-vf</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>sriov-vf object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/sriov-vf">/sriov-vf</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                pci-id
-                                            </td>
-                                            <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing sriov-vf</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                pci-id
-                                            </td>
-                                            <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                pci-id
-                                            </td>
-                                            <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                pci-id
-                                            </td>
-                                            <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns vlans</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns vlans</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vlans">/vlans</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns vlan</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vpn-id
-                                            </td>
-                                            <td>
-                                               <p>This indicates the customers VPN ID associated with this vlan</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vlan">/vlan</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing vlan</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>vlan object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/vlan">/vlan</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing vlan</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vpn-id
-                                            </td>
-                                            <td>
-                                               <p>This indicates the customers VPN ID associated with this vlan</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-subnet-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l3-interface-ipv4-address-list object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vpn-id
-                                            </td>
-                                            <td>
-                                               <p>This indicates the customers VPN ID associated with this vlan</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-subnet-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l3-interface-ipv6-address-list object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
+                                                equipment-name
                                             </td>
                                             <td>
                                         </td>
@@ -151205,7 +133705,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </div>
                     <div class="panel-body">
                                        <section class="json-schema-description">
-                                    <p>cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&T's AIC.</p>
+                                    <p>cloud-region designates an installation of a cloud cluster or region or instantiation</p>
 <h6 id="default-delete-scope">Default Delete Scope</h6>
 <p>THIS_NODE_ONLY</p>
 <h6 id="related-nodes">Related Nodes</h6>
@@ -151604,7 +134104,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <li>FROM pserver</li>
 <li>FROM pnf</li>
 <li>FROM vce</li>
-<li>FROM vpe</li>
 <li>FROM vpls-pe</li>
 <li>FROM volume-group</li>
 <li>FROM zone</li></ul>
@@ -152370,7 +134869,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <ul>
 <li>TO availability-zone (Many2Many)</li>
 <li>FROM complex (is composed of ctag-pool)</li>
-<li>FROM vpe</li>
 <li>FROM vpls-pe</li></ul>
                             
                                 </section>
@@ -152854,7 +135352,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </div>
                     <div class="panel-body">
                                        <section class="json-schema-description">
-                                    <p>Collection of digital virtual switch metadata used for vmWare VCEs and VPEs.</p>
+                                    <p>Collection of digital virtual switch metadata used for vmWare VCEs and GenericVnfs.</p>
                             
                                 </section>
 
@@ -153307,8 +135805,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <h6 id="related-nodes">Related Nodes</h6>
 <ul>
 <li>FROM generic-vnf (is composed of entitlement)</li>
-<li>FROM vce (is composed of entitlement)</li>
-<li>FROM vpe (is composed of entitlement)</li></ul>
+<li>FROM vce (is composed of entitlement)</li></ul>
                             
                                 </section>
 
@@ -153736,6 +136233,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <p>CASCADE_TO_CHILDREN</p>
 <h6 id="related-nodes">Related Nodes</h6>
 <ul>
+<li>TO license-key-resource (Many2Many)</li>
 <li>TO l-interface (comprises generic-vnf, Many2Many)</li>
 <li>TO availability-zone (Many2Many)</li>
 <li>TO lag-interface (comprises generic-vnf, Many2Many)</li>
@@ -153749,7 +136247,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <li>TO ipsec-configuration (Many2One)</li>
 <li>TO vf-module (comprises generic-vnf, One2Many)</li>
 <li>TO volume-group (One2Many)</li>
-<li>TO vnfc (One2Many, will delete target node)</li>
+<li>TO vnfc (One2Many)</li>
 <li>TO instance-group (Many2Many)</li>
 <li>TO entitlement (comprises generic-vnf, One2Many)</li>
 <li>TO license (comprises generic-vnf, One2Many)</li>
@@ -154649,7 +137147,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <p>ERROR_4_IN_EDGES_OR_CASCADE</p>
 <h6 id="related-nodes">Related Nodes</h6>
 <ul>
-<li>TO metadata (comprises image, Many2Many)</li>
 <li>TO metadatum (comprises image, Many2Many)</li>
 <li>FROM cloud-region (is composed of image)</li>
 <li>FROM vserver</li></ul>
@@ -155951,16 +138448,15 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <li>TO l3-interface-ipv4-address-list (comprises l-interface, Many2Many)</li>
 <li>TO l3-interface-ipv6-address-list (comprises l-interface, Many2Many)</li>
 <li>TO l-interface (comprises l-interface, One2Many)</li>
-<li>TO logical-link (Many2Many, will delete target node)</li>
+<li>TO logical-link (Many2Many)</li>
 <li>TO vlan (comprises l-interface, Many2Many)</li>
 <li>TO sriov-vf (comprises l-interface, One2One)</li>
 <li>FROM generic-vnf (is composed of l-interface)</li>
-<li>FROM l-interface (is composed of l-interface)</li>
 <li>FROM lag-interface (is composed of l-interface)</li>
 <li>FROM newvce (is composed of l-interface)</li>
 <li>FROM p-interface (is composed of l-interface)</li>
-<li>FROM vpe (is composed of l-interface)</li>
-<li>FROM vserver (is composed of l-interface)</li></ul>
+<li>FROM vserver (is composed of l-interface)</li>
+<li>FROM l-interface (is composed of l-interface)</li></ul>
                             
                                 </section>
 
@@ -157057,14 +139553,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <p>CASCADE_TO_CHILDREN</p>
 <h6 id="related-nodes">Related Nodes</h6>
 <ul>
-<li>TO logical-link (Many2Many, will delete target node)</li>
-<li>TO lag-link (Many2Many, will delete target node)</li>
+<li>TO logical-link (Many2Many)</li>
+<li>TO lag-link (Many2Many)</li>
 <li>TO p-interface (Many2Many)</li>
 <li>TO l-interface (comprises lag-interface, Many2Many)</li>
 <li>FROM generic-vnf (is composed of lag-interface)</li>
 <li>FROM pserver (is composed of lag-interface)</li>
 <li>FROM pnf (is composed of lag-interface)</li>
-<li>FROM vpe (is composed of lag-interface)</li>
 <li>FROM vpls-pe (is composed of lag-interface)</li></ul>
                             
                                 </section>
@@ -157395,8 +139890,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <h6 id="related-nodes">Related Nodes</h6>
 <ul>
 <li>FROM generic-vnf (is composed of license)</li>
-<li>FROM vce (is composed of license)</li>
-<li>FROM vpe (is composed of license)</li></ul>
+<li>FROM vce (is composed of license)</li></ul>
                             
                                 </section>
 
@@ -157530,11 +140024,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <li>TO vpn-binding (Many2Many)</li>
 <li>FROM l-interface</li>
 <li>FROM lag-interface</li>
-<li>FROM logical-link</li>
 <li>FROM p-interface</li>
 <li>FROM service-instance</li>
 <li>FROM virtual-data-center</li>
-<li>FROM vlan</li></ul>
+<li>FROM vlan</li>
+<li>FROM logical-link</li></ul>
                             
                                 </section>
 
@@ -157849,9 +140343,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                     <p>Collection of metadatum (key/value pairs)</p>
 <h6 id="default-delete-scope">Default Delete Scope</h6>
 <p>THIS_NODE_ONLY</p>
-<h6 id="related-nodes">Related Nodes</h6>
-<ul>
-<li>FROM image (is composed of metadata)</li></ul>
                             
                                 </section>
 
@@ -158297,8 +140788,8 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <li>TO model-constraint (comprises model-element, One2Many)</li>
 <li>TO constrained-element-set (comprises model-element, One2Many)</li>
 <li>FROM model-ver (is composed of model-element)</li>
-<li>FROM model-element (is composed of model-element)</li>
-<li>FROM element-choice-set (is composed of model-element)</li></ul>
+<li>FROM element-choice-set (is composed of model-element)</li>
+<li>FROM model-element (is composed of model-element)</li></ul>
                             
                                 </section>
 
@@ -159347,26 +141838,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                                         </div>
                                                                     </section>                </div>
                                             </dd>
-                                            <dt data-property-name="vpes">
-                                                <span class="json-property-name">vpes:</span>
-                                                <span class="json-property-type">object[]</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                
-                                                <div class="json-inner-schema">
-                                                    
-                                                                    <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/vpe">vpe</a>
-                                                                        </span>
-                                                                        <span class="json-property-range" title="Value limits"></span>
-                                                                        
-                                                                        <div class="json-inner-schema">
-                                                                            
-                                                                        </div>
-                                                                    </section>                </div>
-                                            </dd>
                                             <dt data-property-name="vnfcs">
                                                 <span class="json-property-name">vnfcs:</span>
                                                 <span class="json-property-type">object[]</span>
@@ -159983,7 +142454,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 
                                             </dt>
                                             <dd>
-                                                <p>Address tail-f uses to configure vpe, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).</p>
+                                                <p>Address tail-f uses to configure generic-vnf, also used for troubleshooting and is IP used for traps generated by GenericVnf (v4-loopback0-ip-address).</p>
                                                 <div class="json-inner-schema">
                                                     
                                                 </div>
@@ -159995,7 +142466,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 
                                             </dt>
                                             <dd>
-                                                <p>Client should send valid enumerated value, e.g., VPE.</p>
+                                                <p>Client should send valid enumerated value.</p>
                                                 <div class="json-inner-schema">
                                                     
                                                 </div>
@@ -160779,7 +143250,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <h6 id="related-nodes">Related Nodes</h6>
 <ul>
 <li>TO l-interface (comprises p-interface, Many2Many)</li>
-<li>TO physical-link (Many2Many, will delete target node)</li>
+<li>TO physical-link (Many2Many)</li>
 <li>TO logical-link (Many2One)</li>
 <li>FROM lag-interface</li>
 <li>FROM pserver (is composed of p-interface)</li>
@@ -164207,7 +146678,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <li>TO pnf (One2Many)</li>
 <li>TO connector (Many2Many)</li>
 <li>TO metadatum (comprises service-instance, Many2Many)</li>
-<li>TO logical-link (Many2Many, will delete target node)</li>
+<li>TO logical-link (Many2Many)</li>
 <li>TO vlan (One2Many)</li>
 <li>TO service-instance (One2Many)</li>
 <li>TO ctag-assignment (One2Many)</li>
@@ -165574,7 +148045,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     <div class="panel-body">
                                        <section class="json-schema-description">
                                     <h6 id="default-delete-scope">Default Delete Scope</h6>
-<p>THIS_NODE_ONLY</p>
+<p>ERROR_IF_ANY_IN_EDGES</p>
 <h6 id="related-nodes">Related Nodes</h6>
 <ul>
 <li>FROM l3-interface-ipv4-address-list</li>
@@ -166667,7 +149138,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <ul>
 <li>TO volume-group (One2One)</li>
 <li>TO l3-network (Many2Many)</li>
-<li>TO vnfc (One2Many, will delete target node)</li>
+<li>TO vnfc (One2Many)</li>
 <li>FROM vserver</li>
 <li>FROM generic-vnf (is composed of vf-module)</li></ul>
                             
@@ -167199,7 +149670,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <li>TO l3-interface-ipv4-address-list (comprises vlan, Many2Many)</li>
 <li>TO l3-interface-ipv6-address-list (comprises vlan, Many2Many)</li>
 <li>TO multicast-configuration (Many2Many)</li>
-<li>TO logical-link (Many2Many, will delete target node)</li>
+<li>TO logical-link (Many2Many)</li>
 <li>FROM l-interface (is composed of vlan)</li>
 <li>FROM service-instance</li>
 <li>FROM allotted-resource</li></ul>
@@ -167804,683 +150275,29 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                                         </div>
                                                                     </section>                </div>
                                             </dd>
-                                    </dl>
-                                </section>
-                    </div>
-                </div>
-                <div id="definition-vnfcs" class="panel panel-definition">
-                        <div class="panel-heading">
-                                <h3 class="panel-title"><a name="/definitions/vnfcs"></a>vnfcs:
-                                    <span class="json-property-type"><span class="json-property-type">object</span>
-                <span class="json-property-range" title="Value limits"></span>
-                
-                </span>
-                                </h3>
-                        </div>
-                    <div class="panel-body">
-                                       <section class="json-schema-description">
-                                    <p>virtual network components associated with a vserver from application controller.</p>
-                            
-                                </section>
-
-                                <section class="json-schema-properties">
-                                    <dl>
-                                            <dt data-property-name="vnfc">
-                                                <span class="json-property-name">vnfc:</span>
-                                                <span class="json-property-type">object[]</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                
-                                                <div class="json-inner-schema">
-                                                    
-                                                                    <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/vnfc">vnfc</a>
-                                                                        </span>
-                                                                        <span class="json-property-range" title="Value limits"></span>
-                                                                        
-                                                                        <div class="json-inner-schema">
-                                                                            
-                                                                        </div>
-                                                                    </section>                </div>
-                                            </dd>
-                                    </dl>
-                                </section>
-                    </div>
-                </div>
-                <div id="definition-volume" class="panel panel-definition">
-                        <div class="panel-heading">
-                                <h3 class="panel-title"><a name="/definitions/volume"></a>volume:
-                                    <span class="json-property-type"><span class="json-property-type">object</span>
-                <span class="json-property-range" title="Value limits"></span>
-                
-                </span>
-                                </h3>
-                        </div>
-                    <div class="panel-body">
-                                       <section class="json-schema-description">
-                                    <p>Ephemeral Block storage volume.</p>
-<h6 id="default-delete-scope">Default Delete Scope</h6>
-<p>THIS_NODE_ONLY</p>
-<h6 id="related-nodes">Related Nodes</h6>
-<ul>
-<li>FROM vserver (is composed of volume)</li></ul>
-                            
-                                </section>
-
-                                <section class="json-schema-properties">
-                                    <dl>
-                                            <dt data-property-name="volume-id">
-                                                <span class="json-property-name">volume-id:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                                 <span class="json-property-required"></span>
-                                            </dt>
-                                            <dd>
-                                                <p>Unique ID of block storage volume relative to the vserver.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="volume-selflink">
-                                                <span class="json-property-name">volume-selflink:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                                 <span class="json-property-required"></span>
-                                            </dt>
-                                            <dd>
-                                                <p>URL to endpoint where AAI can get more details</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="resource-version">
-                                                <span class="json-property-name">resource-version:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Used for optimistic concurrency.  Must be empty on create, valid on update and delete.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="relationship-list">
-                                                <span class="json-property-name">relationship-list:</span>
-                                                <span class="json-property-type">object[]</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                
-                                                <div class="json-inner-schema">
-                                                    
-                                                                    <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/relationship">relationship</a>
-                                                                        </span>
-                                                                        <span class="json-property-range" title="Value limits"></span>
-                                                                        
-                                                                        <div class="json-inner-schema">
-                                                                            
-                                                                        </div>
-                                                                    </section>                </div>
-                                            </dd>
-                                    </dl>
-                                </section>
-                    </div>
-                </div>
-                <div id="definition-volume-group" class="panel panel-definition">
-                        <div class="panel-heading">
-                                <h3 class="panel-title"><a name="/definitions/volume-group"></a>volume-group:
-                                    <span class="json-property-type"><span class="json-property-type">object</span>
-                <span class="json-property-range" title="Value limits"></span>
-                
-                </span>
-                                </h3>
-                        </div>
-                    <div class="panel-body">
-                                       <section class="json-schema-description">
-                                    <p>Persistent block-level storage.</p>
-<h6 id="default-delete-scope">Default Delete Scope</h6>
-<p>THIS_NODE_ONLY</p>
-<h6 id="related-nodes">Related Nodes</h6>
-<ul>
-<li>TO complex (Many2Many)</li>
-<li>TO tenant (Many2Many)</li>
-<li>FROM cloud-region (is composed of volume-group)</li>
-<li>FROM vf-module</li>
-<li>FROM generic-vnf</li></ul>
-                            
-                                </section>
-
-                                <section class="json-schema-properties">
-                                    <dl>
-                                            <dt data-property-name="volume-group-id">
-                                                <span class="json-property-name">volume-group-id:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                                 <span class="json-property-required"></span>
-                                            </dt>
-                                            <dd>
-                                                <p>Unique ID of volume-group.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="volume-group-name">
-                                                <span class="json-property-name">volume-group-name:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                                 <span class="json-property-required"></span>
-                                            </dt>
-                                            <dd>
-                                                <p>Name of the volume group.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="heat-stack-id">
-                                                <span class="json-property-name">heat-stack-id:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Heat stack id corresponding to this volume-group</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="vnf-type">
-                                                <span class="json-property-name">vnf-type:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                                 <span class="json-property-required"></span>
-                                            </dt>
-                                            <dd>
-                                                <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="orchestration-status">
-                                                <span class="json-property-name">orchestration-status:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Orchestration status of this volume-group</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="model-customization-id">
-                                                <span class="json-property-name">model-customization-id:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>captures the id of all the configuration used to customize the resource for the service.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="vf-module-model-customization-id">
-                                                <span class="json-property-name">vf-module-model-customization-id:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>helps relate the volume group to the vf-module whose components will require the volume group</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="resource-version">
-                                                <span class="json-property-name">resource-version:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Used for optimistic concurrency.  Must be empty on create, valid on update and delete.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="relationship-list">
-                                                <span class="json-property-name">relationship-list:</span>
-                                                <span class="json-property-type">object[]</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                
-                                                <div class="json-inner-schema">
-                                                    
-                                                                    <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/relationship">relationship</a>
-                                                                        </span>
-                                                                        <span class="json-property-range" title="Value limits"></span>
-                                                                        
-                                                                        <div class="json-inner-schema">
-                                                                            
-                                                                        </div>
-                                                                    </section>                </div>
-                                            </dd>
-                                    </dl>
-                                </section>
-                    </div>
-                </div>
-                <div id="definition-volume-groups" class="panel panel-definition">
-                        <div class="panel-heading">
-                                <h3 class="panel-title"><a name="/definitions/volume-groups"></a>volume-groups:
-                                    <span class="json-property-type"><span class="json-property-type">object</span>
-                <span class="json-property-range" title="Value limits"></span>
-                
-                </span>
-                                </h3>
-                        </div>
-                    <div class="panel-body">
-                                       <section class="json-schema-description">
-                                    <p>Collection of persistent block-level storage.</p>
-                            
-                                </section>
-
-                                <section class="json-schema-properties">
-                                    <dl>
-                                            <dt data-property-name="volume-group">
-                                                <span class="json-property-name">volume-group:</span>
-                                                <span class="json-property-type">object[]</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                
-                                                <div class="json-inner-schema">
-                                                    
-                                                                    <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/volume-group">volume-group</a>
-                                                                        </span>
-                                                                        <span class="json-property-range" title="Value limits"></span>
-                                                                        
-                                                                        <div class="json-inner-schema">
-                                                                            
-                                                                        </div>
-                                                                    </section>                </div>
-                                            </dd>
-                                    </dl>
-                                </section>
-                    </div>
-                </div>
-                <div id="definition-volumes" class="panel panel-definition">
-                        <div class="panel-heading">
-                                <h3 class="panel-title"><a name="/definitions/volumes"></a>volumes:
-                                    <span class="json-property-type"><span class="json-property-type">object</span>
-                <span class="json-property-range" title="Value limits"></span>
-                
-                </span>
-                                </h3>
-                        </div>
-                    <div class="panel-body">
-                                       <section class="json-schema-description">
-                                    <p>Collection of ephemeral Block storage volumes.</p>
-                            
-                                </section>
-
-                                <section class="json-schema-properties">
-                                    <dl>
-                                            <dt data-property-name="volume">
-                                                <span class="json-property-name">volume:</span>
-                                                <span class="json-property-type">object[]</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                
-                                                <div class="json-inner-schema">
-                                                    
-                                                                    <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/volume">volume</a>
-                                                                        </span>
-                                                                        <span class="json-property-range" title="Value limits"></span>
-                                                                        
-                                                                        <div class="json-inner-schema">
-                                                                            
-                                                                        </div>
-                                                                    </section>                </div>
-                                            </dd>
-                                    </dl>
-                                </section>
-                    </div>
-                </div>
-                <div id="definition-vpe" class="panel panel-definition">
-                        <div class="panel-heading">
-                                <h3 class="panel-title"><a name="/definitions/vpe"></a>vpe:
-                                    <span class="json-property-type"><span class="json-property-type">object</span>
-                <span class="json-property-range" title="Value limits"></span>
-                
-                </span>
-                                </h3>
-                        </div>
-                    <div class="panel-body">
-                                       <section class="json-schema-description">
-                                    <p>Relationship-list must include related to info for complex.</p>
-<h6 id="default-delete-scope">Default Delete Scope</h6>
-<p>CASCADE_TO_CHILDREN</p>
-<h6 id="related-nodes">Related Nodes</h6>
-<ul>
-<li>TO complex (Many2Many)</li>
-<li>TO ctag-pool (Many2Many)</li>
-<li>TO l-interface (comprises vpe, Many2Many)</li>
-<li>TO lag-interface (comprises vpe, Many2Many)</li>
-<li>TO vserver (Many2Many)</li>
-<li>TO entitlement (comprises vpe, One2Many)</li>
-<li>TO license (comprises vpe, One2Many)</li></ul>
-                            
-                                </section>
-
-                                <section class="json-schema-properties">
-                                    <dl>
-                                            <dt data-property-name="vnf-id">
-                                                <span class="json-property-name">vnf-id:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                                 <span class="json-property-required"></span>
-                                            </dt>
-                                            <dd>
-                                                <p>Unique id of VNF.  This is unique across the graph.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="vnf-name">
-                                                <span class="json-property-name">vnf-name:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                                 <span class="json-property-required"></span>
-                                            </dt>
-                                            <dd>
-                                                <p>Name of VNF.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="vnf-name2">
-                                                <span class="json-property-name">vnf-name2:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Alternate name of VNF.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="vnf-type">
-                                                <span class="json-property-name">vnf-type:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                                 <span class="json-property-required"></span>
-                                            </dt>
-                                            <dd>
-                                                <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="service-id">
-                                                <span class="json-property-name">service-id:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="regional-resource-zone">
-                                                <span class="json-property-name">regional-resource-zone:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Regional way of organizing pservers, source of truth should define values</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="prov-status">
-                                                <span class="json-property-name">prov-status:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="operational-status">
-                                                <span class="json-property-name">operational-status:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Indicator for whether the resource is considered operational</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="license-key">
-                                                <span class="json-property-name">license-key:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>OBSOLETE -  do not use.  See child relationships.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="equipment-role">
-                                                <span class="json-property-name">equipment-role:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Client should send valid enumerated value</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="orchestration-status">
-                                                <span class="json-property-name">orchestration-status:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Orchestration status of this VNF, mastered by MSO</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="heat-stack-id">
-                                                <span class="json-property-name">heat-stack-id:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="mso-catalog-key">
-                                                <span class="json-property-name">mso-catalog-key:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Corresponds to the SDN-C catalog id used to configure this VCE</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="ipv4-oam-address">
-                                                <span class="json-property-name">ipv4-oam-address:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Address tail-f uses to configure vpe, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="ipv4-oam-gateway-address-prefix-length">
-                                                <span class="json-property-name">ipv4-oam-gateway-address-prefix-length:</span>
-                                                <span class="json-property-type">integer</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Prefix length for oam-address</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="ipv4-oam-gateway-address">
-                                                <span class="json-property-name">ipv4-oam-gateway-address:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Gateway address</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="v4-loopback0-ip-address">
-                                                <span class="json-property-name">v4-loopback0-ip-address:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Loopback0 address</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="vlan-id-outer">
-                                                <span class="json-property-name">vlan-id-outer:</span>
-                                                <span class="json-property-type">integer</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Temporary location for stag to get to VCE</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="as-number">
-                                                <span class="json-property-name">as-number:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>as-number of the VPE</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="resource-version">
-                                                <span class="json-property-name">resource-version:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Used for optimistic concurrency.  Must be empty on create, valid on update and delete.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="summary-status">
-                                                <span class="json-property-name">summary-status:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>details regarding the vpe operation, PLEASE DISCONTINUE USE OF THIS FIELD.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="encrypted-access-flag">
-                                                <span class="json-property-name">encrypted-access-flag:</span>
-                                                <span class="json-property-type">boolean</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>indicates whether vpe access uses SSH</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="relationship-list">
-                                                <span class="json-property-name">relationship-list:</span>
-                                                <span class="json-property-type">object[]</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                
-                                                <div class="json-inner-schema">
-                                                    
-                                                                    <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/relationship">relationship</a>
-                                                                        </span>
-                                                                        <span class="json-property-range" title="Value limits"></span>
-                                                                        
-                                                                        <div class="json-inner-schema">
-                                                                            
-                                                                        </div>
-                                                                    </section>                </div>
-                                            </dd>
-                                            <dt data-property-name="l-interfaces">
-                                                <span class="json-property-name">l-interfaces:</span>
+                                    </dl>
+                                </section>
+                    </div>
+                </div>
+                <div id="definition-vnfcs" class="panel panel-definition">
+                        <div class="panel-heading">
+                                <h3 class="panel-title"><a name="/definitions/vnfcs"></a>vnfcs:
+                                    <span class="json-property-type"><span class="json-property-type">object</span>
+                <span class="json-property-range" title="Value limits"></span>
+                
+                </span>
+                                </h3>
+                        </div>
+                    <div class="panel-body">
+                                       <section class="json-schema-description">
+                                    <p>virtual network components associated with a vserver from application controller.</p>
+                            
+                                </section>
+
+                                <section class="json-schema-properties">
+                                    <dl>
+                                            <dt data-property-name="vnfc">
+                                                <span class="json-property-name">vnfc:</span>
                                                 <span class="json-property-type">object[]</span>
                                                 <span class="json-property-range" title="Value limits"></span>
                                                 
@@ -168490,7 +150307,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div class="json-inner-schema">
                                                     
                                                                     <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/l-interface">l-interface</a>
+                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/vnfc">vnfc</a>
                                                                         </span>
                                                                         <span class="json-property-range" title="Value limits"></span>
                                                                         
@@ -168499,8 +150316,72 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                                         </div>
                                                                     </section>                </div>
                                             </dd>
-                                            <dt data-property-name="lag-interfaces">
-                                                <span class="json-property-name">lag-interfaces:</span>
+                                    </dl>
+                                </section>
+                    </div>
+                </div>
+                <div id="definition-volume" class="panel panel-definition">
+                        <div class="panel-heading">
+                                <h3 class="panel-title"><a name="/definitions/volume"></a>volume:
+                                    <span class="json-property-type"><span class="json-property-type">object</span>
+                <span class="json-property-range" title="Value limits"></span>
+                
+                </span>
+                                </h3>
+                        </div>
+                    <div class="panel-body">
+                                       <section class="json-schema-description">
+                                    <p>Ephemeral Block storage volume.</p>
+<h6 id="default-delete-scope">Default Delete Scope</h6>
+<p>THIS_NODE_ONLY</p>
+<h6 id="related-nodes">Related Nodes</h6>
+<ul>
+<li>FROM vserver (is composed of volume)</li></ul>
+                            
+                                </section>
+
+                                <section class="json-schema-properties">
+                                    <dl>
+                                            <dt data-property-name="volume-id">
+                                                <span class="json-property-name">volume-id:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                                 <span class="json-property-required"></span>
+                                            </dt>
+                                            <dd>
+                                                <p>Unique ID of block storage volume relative to the vserver.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="volume-selflink">
+                                                <span class="json-property-name">volume-selflink:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                                 <span class="json-property-required"></span>
+                                            </dt>
+                                            <dd>
+                                                <p>URL to endpoint where AAI can get more details</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="resource-version">
+                                                <span class="json-property-name">resource-version:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                            </dt>
+                                            <dd>
+                                                <p>Used for optimistic concurrency.  Must be empty on create, valid on update and delete.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="relationship-list">
+                                                <span class="json-property-name">relationship-list:</span>
                                                 <span class="json-property-type">object[]</span>
                                                 <span class="json-property-range" title="Value limits"></span>
                                                 
@@ -168510,7 +150391,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div class="json-inner-schema">
                                                     
                                                                     <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/lag-interface">lag-interface</a>
+                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/relationship">relationship</a>
                                                                         </span>
                                                                         <span class="json-property-range" title="Value limits"></span>
                                                                         
@@ -168519,8 +150400,137 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                                         </div>
                                                                     </section>                </div>
                                             </dd>
-                                            <dt data-property-name="licenses">
-                                                <span class="json-property-name">licenses:</span>
+                                    </dl>
+                                </section>
+                    </div>
+                </div>
+                <div id="definition-volume-group" class="panel panel-definition">
+                        <div class="panel-heading">
+                                <h3 class="panel-title"><a name="/definitions/volume-group"></a>volume-group:
+                                    <span class="json-property-type"><span class="json-property-type">object</span>
+                <span class="json-property-range" title="Value limits"></span>
+                
+                </span>
+                                </h3>
+                        </div>
+                    <div class="panel-body">
+                                       <section class="json-schema-description">
+                                    <p>Persistent block-level storage.</p>
+<h6 id="default-delete-scope">Default Delete Scope</h6>
+<p>THIS_NODE_ONLY</p>
+<h6 id="related-nodes">Related Nodes</h6>
+<ul>
+<li>TO complex (Many2Many)</li>
+<li>TO tenant (Many2Many)</li>
+<li>FROM cloud-region (is composed of volume-group)</li>
+<li>FROM vf-module</li>
+<li>FROM generic-vnf</li></ul>
+                            
+                                </section>
+
+                                <section class="json-schema-properties">
+                                    <dl>
+                                            <dt data-property-name="volume-group-id">
+                                                <span class="json-property-name">volume-group-id:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                                 <span class="json-property-required"></span>
+                                            </dt>
+                                            <dd>
+                                                <p>Unique ID of volume-group.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="volume-group-name">
+                                                <span class="json-property-name">volume-group-name:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                                 <span class="json-property-required"></span>
+                                            </dt>
+                                            <dd>
+                                                <p>Name of the volume group.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="heat-stack-id">
+                                                <span class="json-property-name">heat-stack-id:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                            </dt>
+                                            <dd>
+                                                <p>Heat stack id corresponding to this volume-group</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="vnf-type">
+                                                <span class="json-property-name">vnf-type:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                                 <span class="json-property-required"></span>
+                                            </dt>
+                                            <dd>
+                                                <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="orchestration-status">
+                                                <span class="json-property-name">orchestration-status:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                            </dt>
+                                            <dd>
+                                                <p>Orchestration status of this volume-group</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="model-customization-id">
+                                                <span class="json-property-name">model-customization-id:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                            </dt>
+                                            <dd>
+                                                <p>captures the id of all the configuration used to customize the resource for the service.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="vf-module-model-customization-id">
+                                                <span class="json-property-name">vf-module-model-customization-id:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                            </dt>
+                                            <dd>
+                                                <p>helps relate the volume group to the vf-module whose components will require the volume group</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="resource-version">
+                                                <span class="json-property-name">resource-version:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                            </dt>
+                                            <dd>
+                                                <p>Used for optimistic concurrency.  Must be empty on create, valid on update and delete.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="relationship-list">
+                                                <span class="json-property-name">relationship-list:</span>
                                                 <span class="json-property-type">object[]</span>
                                                 <span class="json-property-range" title="Value limits"></span>
                                                 
@@ -168530,7 +150540,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div class="json-inner-schema">
                                                     
                                                                     <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/license">license</a>
+                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/relationship">relationship</a>
                                                                         </span>
                                                                         <span class="json-property-range" title="Value limits"></span>
                                                                         
@@ -168539,8 +150549,29 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                                         </div>
                                                                     </section>                </div>
                                             </dd>
-                                            <dt data-property-name="entitlements">
-                                                <span class="json-property-name">entitlements:</span>
+                                    </dl>
+                                </section>
+                    </div>
+                </div>
+                <div id="definition-volume-groups" class="panel panel-definition">
+                        <div class="panel-heading">
+                                <h3 class="panel-title"><a name="/definitions/volume-groups"></a>volume-groups:
+                                    <span class="json-property-type"><span class="json-property-type">object</span>
+                <span class="json-property-range" title="Value limits"></span>
+                
+                </span>
+                                </h3>
+                        </div>
+                    <div class="panel-body">
+                                       <section class="json-schema-description">
+                                    <p>Collection of persistent block-level storage.</p>
+                            
+                                </section>
+
+                                <section class="json-schema-properties">
+                                    <dl>
+                                            <dt data-property-name="volume-group">
+                                                <span class="json-property-name">volume-group:</span>
                                                 <span class="json-property-type">object[]</span>
                                                 <span class="json-property-range" title="Value limits"></span>
                                                 
@@ -168550,7 +150581,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div class="json-inner-schema">
                                                     
                                                                     <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/entitlement">entitlement</a>
+                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/volume-group">volume-group</a>
                                                                         </span>
                                                                         <span class="json-property-range" title="Value limits"></span>
                                                                         
@@ -168563,9 +150594,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 </section>
                     </div>
                 </div>
-                <div id="definition-vpes" class="panel panel-definition">
+                <div id="definition-volumes" class="panel panel-definition">
                         <div class="panel-heading">
-                                <h3 class="panel-title"><a name="/definitions/vpes"></a>vpes:
+                                <h3 class="panel-title"><a name="/definitions/volumes"></a>volumes:
                                     <span class="json-property-type"><span class="json-property-type">object</span>
                 <span class="json-property-range" title="Value limits"></span>
                 
@@ -168574,14 +150605,14 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </div>
                     <div class="panel-body">
                                        <section class="json-schema-description">
-                                    <p>Virtual provider edge router. In 1504, A&AI will populate this object through an M&P and tool provided to operations.</p>
+                                    <p>Collection of ephemeral Block storage volumes.</p>
                             
                                 </section>
 
                                 <section class="json-schema-properties">
                                     <dl>
-                                            <dt data-property-name="vpe">
-                                                <span class="json-property-name">vpe:</span>
+                                            <dt data-property-name="volume">
+                                                <span class="json-property-name">volume:</span>
                                                 <span class="json-property-type">object[]</span>
                                                 <span class="json-property-range" title="Value limits"></span>
                                                 
@@ -168591,7 +150622,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div class="json-inner-schema">
                                                     
                                                                     <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/vpe">vpe</a>
+                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/volume">volume</a>
                                                                         </span>
                                                                         <span class="json-property-range" title="Value limits"></span>
                                                                         
@@ -168660,7 +150691,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 
                                             </dt>
                                             <dd>
-                                                <p>Address tail-f uses to configure vpe, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).</p>
+                                                <p>Address tail-f uses to configure generic-vnf, also used for troubleshooting and is IP used for traps generated by GenericVnf (v4-loopback0-ip-address).</p>
                                                 <div class="json-inner-schema">
                                                     
                                                 </div>
@@ -169003,7 +151034,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <ul>
 <li>TO flavor (Many2One)</li>
 <li>TO image (Many2One)</li>
-<li>TO ipaddress (comprises vserver, Many2Many)</li>
 <li>TO l-interface (comprises vserver, Many2Many)</li>
 <li>TO pserver (Many2One)</li>
 <li>TO volume (comprises vserver, Many2Many)</li>
@@ -169012,8 +151042,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <li>TO vf-module (Many2One)</li>
 <li>FROM generic-vnf</li>
 <li>FROM tenant (is composed of vserver)</li>
-<li>FROM vce</li>
-<li>FROM vpe</li></ul>
+<li>FROM vce</li></ul>
                             
                                 </section>
 
index 140fff8..e288580 100644 (file)
@@ -67,6 +67,36 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     <tr>
                         <td><a href="#operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--delete">DELETE /cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}</a></td>
                         <td><p>delete an existing cloud-region</p>
+        </td>
+                    </tr>
+                    <tr>
+                        <td><a href="#operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--auth-info-items-get">GET /cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/auth-info-items</a></td>
+                        <td><p>returns auth-info-items</p>
+        </td>
+                    </tr>
+                    <tr>
+                        <td><a href="#operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--auth-info-items-auth-info-item--auth-info-item-id--get">GET /cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/auth-info-items/auth-info-item/{auth-info-item-id}</a></td>
+                        <td><p>returns auth-info-item</p>
+        </td>
+                    </tr>
+                    <tr>
+                        <td><a href="#operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--auth-info-items-auth-info-item--auth-info-item-id--put">PUT /cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/auth-info-items/auth-info-item/{auth-info-item-id}</a></td>
+                        <td><p>create or update an existing auth-info-item</p>
+        </td>
+                    </tr>
+                    <tr>
+                        <td><a href="#operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--auth-info-items-auth-info-item--auth-info-item-id--delete">DELETE /cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/auth-info-items/auth-info-item/{auth-info-item-id}</a></td>
+                        <td><p>delete an existing auth-info-item</p>
+        </td>
+                    </tr>
+                    <tr>
+                        <td><a href="#operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--auth-info-items-auth-info-item--auth-info-item-id--relationship-list-relationship-put">PUT /cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/auth-info-items/auth-info-item/{auth-info-item-id}/relationship-list/relationship</a></td>
+                        <td><p>see node definition for valid relationships</p>
+        </td>
+                    </tr>
+                    <tr>
+                        <td><a href="#operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--auth-info-items-auth-info-item--auth-info-item-id--relationship-list-relationship-delete">DELETE /cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/auth-info-items/auth-info-item/{auth-info-item-id}/relationship-list/relationship</a></td>
+                        <td><p>delete an existing relationship</p>
         </td>
                     </tr>
                     <tr>
@@ -1243,50 +1273,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
             </table>
 
                
-            <h3 id="tag-LicenseManagement" class="swagger-summary-tag">Tag: LicenseManagement</h3>
-               
-            <table class="table table-bordered table-condensed swagger--summary">
-                <thead>
-                <tr>
-                    <th>Operation</th>
-                    <th>Description</th>
-                </tr>
-                </thead>
-                <tbody>
-                    <tr>
-                        <td><a href="#operation--license-management-license-key-resources-get">GET /license-management/license-key-resources</a></td>
-                        <td><p>returns license-key-resources</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--license-management-license-key-resources-license-key-resource--att-uuid--get">GET /license-management/license-key-resources/license-key-resource/{att-uuid}</a></td>
-                        <td><p>returns license-key-resource</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--license-management-license-key-resources-license-key-resource--att-uuid--put">PUT /license-management/license-key-resources/license-key-resource/{att-uuid}</a></td>
-                        <td><p>create or update an existing license-key-resource</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--license-management-license-key-resources-license-key-resource--att-uuid--delete">DELETE /license-management/license-key-resources/license-key-resource/{att-uuid}</a></td>
-                        <td><p>delete an existing license-key-resource</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--license-management-license-key-resources-license-key-resource--att-uuid--relationship-list-relationship-put">PUT /license-management/license-key-resources/license-key-resource/{att-uuid}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--license-management-license-key-resources-license-key-resource--att-uuid--relationship-list-relationship-delete">DELETE /license-management/license-key-resources/license-key-resource/{att-uuid}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                </tbody>
-            </table>
-
-               
             <h3 id="tag-Business" class="swagger-summary-tag">Tag: Business</h3>
                
             <table class="table table-bordered table-condensed swagger--summary">
@@ -11227,7 +11213,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -11385,7 +11371,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -11478,7 +11464,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -11552,17 +11538,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--auth-info-items-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--auth-info-items-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns availability-zones</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/availability-zones</strong></h3>
+                    <div class="operation-summary">returns auth-info-items</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/auth-info-items</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns availability-zones</p>
+                        <p>returns auth-info-items</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -11582,7 +11568,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -11665,7 +11651,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/availability-zones">/availability-zones</a>
+                                                        <a class="json-schema-ref" href="#/definitions/auth-info-items">/auth-info-items</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -11693,17 +11679,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--auth-info-items-auth-info-item--auth-info-item-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--auth-info-items-auth-info-item--auth-info-item-id--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns availability-zone</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/availability-zones/availability-zone/{availability-zone-name}</strong></h3>
+                    <div class="operation-summary">returns auth-info-item</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/auth-info-items/auth-info-item/{auth-info-item-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns availability-zone</p>
+                        <p>returns auth-info-item</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -11723,7 +11709,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -11752,10 +11738,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                availability-zone-name
+                                                auth-info-item-id
                                             </td>
                                             <td>
-                                               <p>Name of the availability zone.  Unique across a cloud region</p>
+                                               <p>Unique ID of auth-info-item.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -11796,6 +11782,36 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
+                                        <tr>
+                                            <td>
+                                                username
+                                            </td>
+                                            <td>
+                                               <p>user name of auth infomation to access VIM.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                auth-url
+                                            </td>
+                                            <td>
+                                               <p>authentication url of the cloud.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -11822,7 +11838,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/availability-zone">/availability-zone</a>
+                                                        <a class="json-schema-ref" href="#/definitions/auth-info-item">/auth-info-item</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -11850,17 +11866,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--auth-info-items-auth-info-item--auth-info-item-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--auth-info-items-auth-info-item--auth-info-item-id--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing availability-zone</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/availability-zones/availability-zone/{availability-zone-name}</strong></h3>
+                    <div class="operation-summary">create or update an existing auth-info-item</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/auth-info-items/auth-info-item/{auth-info-item-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing availability-zone</p>
+                        <p>create or update an existing auth-info-item</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -11869,13 +11885,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>availability-zone object that needs to be created or updated</p>
+                                                <p><p>auth-info-item object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/availability-zone">/availability-zone</a>
+                                            <a class="json-schema-ref" href="#/definitions/auth-info-item">/auth-info-item</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -11897,7 +11913,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -11926,10 +11942,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                availability-zone-name
+                                                auth-info-item-id
                                             </td>
                                             <td>
-                                               <p>Name of the availability zone.  Unique across a cloud region</p>
+                                               <p>Unique ID of auth-info-item.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -11971,17 +11987,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--auth-info-items-auth-info-item--auth-info-item-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--auth-info-items-auth-info-item--auth-info-item-id--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing availability-zone</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/availability-zones/availability-zone/{availability-zone-name}</strong></h3>
+                    <div class="operation-summary">delete an existing auth-info-item</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/auth-info-items/auth-info-item/{auth-info-item-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing availability-zone</p>
+                        <p>delete an existing auth-info-item</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -12006,7 +12022,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -12035,10 +12051,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                availability-zone-name
+                                                auth-info-item-id
                                             </td>
                                             <td>
-                                               <p>Name of the availability zone.  Unique across a cloud region</p>
+                                               <p>Unique ID of auth-info-item.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -12096,11 +12112,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--auth-info-items-auth-info-item--auth-info-item-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--auth-info-items-auth-info-item--auth-info-item-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/availability-zones/availability-zone/{availability-zone-name}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/auth-info-items/auth-info-item/{auth-info-item-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -12143,7 +12159,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -12172,10 +12188,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                availability-zone-name
+                                                auth-info-item-id
                                             </td>
                                             <td>
-                                               <p>Name of the availability zone.  Unique across a cloud region</p>
+                                               <p>Unique ID of auth-info-item.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -12217,11 +12233,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--auth-info-items-auth-info-item--auth-info-item-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--auth-info-items-auth-info-item--auth-info-item-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/availability-zones/availability-zone/{availability-zone-name}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/auth-info-items/auth-info-item/{auth-info-item-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -12252,7 +12268,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -12281,10 +12297,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                availability-zone-name
+                                                auth-info-item-id
                                             </td>
                                             <td>
-                                               <p>Name of the availability zone.  Unique across a cloud region</p>
+                                               <p>Unique ID of auth-info-item.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -12326,17 +12342,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns dvs-switches</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/dvs-switches</strong></h3>
+                    <div class="operation-summary">returns availability-zones</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/availability-zones</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns dvs-switches</p>
+                        <p>returns availability-zones</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -12356,7 +12372,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -12439,7 +12455,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/dvs-switches">/dvs-switches</a>
+                                                        <a class="json-schema-ref" href="#/definitions/availability-zones">/availability-zones</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -12467,17 +12483,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns dvs-switch</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/dvs-switches/dvs-switch/{switch-name}</strong></h3>
+                    <div class="operation-summary">returns availability-zone</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/availability-zones/availability-zone/{availability-zone-name}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns dvs-switch</p>
+                        <p>returns availability-zone</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -12497,7 +12513,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -12526,10 +12542,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                switch-name
+                                                availability-zone-name
                                             </td>
                                             <td>
-                                               <p>DVS switch name</p>
+                                               <p>Name of the availability zone.  Unique across a cloud region</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -12570,21 +12586,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                vcenter-url
-                                            </td>
-                                            <td>
-                                               <p>URL used to reach the vcenter</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -12611,7 +12612,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/dvs-switch">/dvs-switch</a>
+                                                        <a class="json-schema-ref" href="#/definitions/availability-zone">/availability-zone</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -12639,17 +12640,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing dvs-switch</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/dvs-switches/dvs-switch/{switch-name}</strong></h3>
+                    <div class="operation-summary">create or update an existing availability-zone</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/availability-zones/availability-zone/{availability-zone-name}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing dvs-switch</p>
+                        <p>create or update an existing availability-zone</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -12658,13 +12659,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>dvs-switch object that needs to be created or updated</p>
+                                                <p><p>availability-zone object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/dvs-switch">/dvs-switch</a>
+                                            <a class="json-schema-ref" href="#/definitions/availability-zone">/availability-zone</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -12686,7 +12687,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -12715,10 +12716,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                switch-name
+                                                availability-zone-name
                                             </td>
                                             <td>
-                                               <p>DVS switch name</p>
+                                               <p>Name of the availability zone.  Unique across a cloud region</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -12760,17 +12761,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing dvs-switch</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/dvs-switches/dvs-switch/{switch-name}</strong></h3>
+                    <div class="operation-summary">delete an existing availability-zone</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/availability-zones/availability-zone/{availability-zone-name}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing dvs-switch</p>
+                        <p>delete an existing availability-zone</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -12795,7 +12796,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -12824,10 +12825,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                switch-name
+                                                availability-zone-name
                                             </td>
                                             <td>
-                                               <p>DVS switch name</p>
+                                               <p>Name of the availability zone.  Unique across a cloud region</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -12885,11 +12886,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/dvs-switches/dvs-switch/{switch-name}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/availability-zones/availability-zone/{availability-zone-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -12932,7 +12933,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -12961,10 +12962,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                switch-name
+                                                availability-zone-name
                                             </td>
                                             <td>
-                                               <p>DVS switch name</p>
+                                               <p>Name of the availability zone.  Unique across a cloud region</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -13006,11 +13007,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--availability-zones-availability-zone--availability-zone-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/dvs-switches/dvs-switch/{switch-name}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/availability-zones/availability-zone/{availability-zone-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -13041,7 +13042,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -13070,10 +13071,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                switch-name
+                                                availability-zone-name
                                             </td>
                                             <td>
-                                               <p>DVS switch name</p>
+                                               <p>Name of the availability zone.  Unique across a cloud region</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -13115,17 +13116,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns flavors</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/flavors</strong></h3>
+                    <div class="operation-summary">returns dvs-switches</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/dvs-switches</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns flavors</p>
+                        <p>returns dvs-switches</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -13145,7 +13146,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -13228,7 +13229,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/flavors">/flavors</a>
+                                                        <a class="json-schema-ref" href="#/definitions/dvs-switches">/dvs-switches</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -13256,17 +13257,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns flavor</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/flavors/flavor/{flavor-id}</strong></h3>
+                    <div class="operation-summary">returns dvs-switch</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/dvs-switches/dvs-switch/{switch-name}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns flavor</p>
+                        <p>returns dvs-switch</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -13286,7 +13287,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -13315,10 +13316,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                flavor-id
+                                                switch-name
                                             </td>
                                             <td>
-                                               <p>Flavor id, expected to be unique across cloud-region.</p>
+                                               <p>DVS switch name</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -13361,10 +13362,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                flavor-name
+                                                vcenter-url
                                             </td>
                                             <td>
-                                               <p>Flavor name</p>
+                                               <p>URL used to reach the vcenter</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -13400,7 +13401,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/flavor">/flavor</a>
+                                                        <a class="json-schema-ref" href="#/definitions/dvs-switch">/dvs-switch</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -13428,17 +13429,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing flavor</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/flavors/flavor/{flavor-id}</strong></h3>
+                    <div class="operation-summary">create or update an existing dvs-switch</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/dvs-switches/dvs-switch/{switch-name}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing flavor</p>
+                        <p>create or update an existing dvs-switch</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -13447,13 +13448,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>flavor object that needs to be created or updated</p>
+                                                <p><p>dvs-switch object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/flavor">/flavor</a>
+                                            <a class="json-schema-ref" href="#/definitions/dvs-switch">/dvs-switch</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -13475,7 +13476,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -13504,10 +13505,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                flavor-id
+                                                switch-name
                                             </td>
                                             <td>
-                                               <p>Flavor id, expected to be unique across cloud-region.</p>
+                                               <p>DVS switch name</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -13549,17 +13550,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing flavor</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/flavors/flavor/{flavor-id}</strong></h3>
+                    <div class="operation-summary">delete an existing dvs-switch</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/dvs-switches/dvs-switch/{switch-name}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing flavor</p>
+                        <p>delete an existing dvs-switch</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -13584,7 +13585,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -13613,10 +13614,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                flavor-id
+                                                switch-name
                                             </td>
                                             <td>
-                                               <p>Flavor id, expected to be unique across cloud-region.</p>
+                                               <p>DVS switch name</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -13674,11 +13675,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/flavors/flavor/{flavor-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/dvs-switches/dvs-switch/{switch-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -13721,7 +13722,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -13750,10 +13751,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                flavor-id
+                                                switch-name
                                             </td>
                                             <td>
-                                               <p>Flavor id, expected to be unique across cloud-region.</p>
+                                               <p>DVS switch name</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -13795,11 +13796,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--dvs-switches-dvs-switch--switch-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/flavors/flavor/{flavor-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/dvs-switches/dvs-switch/{switch-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -13830,7 +13831,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -13859,10 +13860,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                flavor-id
+                                                switch-name
                                             </td>
                                             <td>
-                                               <p>Flavor id, expected to be unique across cloud-region.</p>
+                                               <p>DVS switch name</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -13904,17 +13905,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns group-assignments</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/group-assignments</strong></h3>
+                    <div class="operation-summary">returns flavors</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/flavors</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns group-assignments</p>
+                        <p>returns flavors</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -13934,7 +13935,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -14017,7 +14018,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/group-assignments">/group-assignments</a>
+                                                        <a class="json-schema-ref" href="#/definitions/flavors">/flavors</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -14045,17 +14046,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns group-assignment</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/group-assignments/group-assignment/{group-id}</strong></h3>
+                    <div class="operation-summary">returns flavor</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/flavors/flavor/{flavor-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns group-assignment</p>
+                        <p>returns flavor</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -14075,7 +14076,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -14104,10 +14105,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                group-id
+                                                flavor-id
                                             </td>
                                             <td>
-                                               <p>Group id, expected to be unique across cloud-region.</p>
+                                               <p>Flavor id, expected to be unique across cloud-region.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -14150,25 +14151,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                group-type
-                                            </td>
-                                            <td>
-                                               <p>Group type - the type of group this instance refers to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-name
+                                                flavor-name
                                             </td>
                                             <td>
-                                               <p>Group name - name assigned to the group</p>
+                                               <p>Flavor name</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -14204,7 +14190,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/group-assignment">/group-assignment</a>
+                                                        <a class="json-schema-ref" href="#/definitions/flavor">/flavor</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -14232,17 +14218,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing group-assignment</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/group-assignments/group-assignment/{group-id}</strong></h3>
+                    <div class="operation-summary">create or update an existing flavor</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/flavors/flavor/{flavor-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing group-assignment</p>
+                        <p>create or update an existing flavor</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -14251,13 +14237,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>group-assignment object that needs to be created or updated</p>
+                                                <p><p>flavor object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/group-assignment">/group-assignment</a>
+                                            <a class="json-schema-ref" href="#/definitions/flavor">/flavor</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -14279,7 +14265,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -14308,10 +14294,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                group-id
+                                                flavor-id
                                             </td>
                                             <td>
-                                               <p>Group id, expected to be unique across cloud-region.</p>
+                                               <p>Flavor id, expected to be unique across cloud-region.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -14353,17 +14339,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing group-assignment</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/group-assignments/group-assignment/{group-id}</strong></h3>
+                    <div class="operation-summary">delete an existing flavor</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/flavors/flavor/{flavor-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing group-assignment</p>
+                        <p>delete an existing flavor</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -14388,7 +14374,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -14417,10 +14403,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                group-id
+                                                flavor-id
                                             </td>
                                             <td>
-                                               <p>Group id, expected to be unique across cloud-region.</p>
+                                               <p>Flavor id, expected to be unique across cloud-region.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -14478,11 +14464,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/group-assignments/group-assignment/{group-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/flavors/flavor/{flavor-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -14525,7 +14511,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -14554,10 +14540,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                group-id
+                                                flavor-id
                                             </td>
                                             <td>
-                                               <p>Group id, expected to be unique across cloud-region.</p>
+                                               <p>Flavor id, expected to be unique across cloud-region.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -14599,11 +14585,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--flavors-flavor--flavor-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/group-assignments/group-assignment/{group-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/flavors/flavor/{flavor-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -14634,7 +14620,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -14663,10 +14649,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                group-id
+                                                flavor-id
                                             </td>
                                             <td>
-                                               <p>Group id, expected to be unique across cloud-region.</p>
+                                               <p>Flavor id, expected to be unique across cloud-region.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -14708,17 +14694,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns images</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images</strong></h3>
+                    <div class="operation-summary">returns group-assignments</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/group-assignments</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns images</p>
+                        <p>returns group-assignments</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -14738,7 +14724,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -14821,7 +14807,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/images">/images</a>
+                                                        <a class="json-schema-ref" href="#/definitions/group-assignments">/group-assignments</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -14849,17 +14835,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns image</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images/image/{image-id}</strong></h3>
+                    <div class="operation-summary">returns group-assignment</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/group-assignments/group-assignment/{group-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns image</p>
+                        <p>returns group-assignment</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -14879,7 +14865,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -14908,10 +14894,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                image-id
+                                                group-id
                                             </td>
                                             <td>
-                                               <p>Image id, expected to be unique across cloud region</p>
+                                               <p>Group id, expected to be unique across cloud-region.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -14954,40 +14940,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                image-name
-                                            </td>
-                                            <td>
-                                               <p>Image name</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                application
-                                            </td>
-                                            <td>
-                                               <p>The application that the image instantiates.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                application-vendor
+                                                group-type
                                             </td>
                                             <td>
-                                               <p>The vendor of the application.</p>
+                                               <p>Group type - the type of group this instance refers to</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -14999,10 +14955,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                application-version
+                                                group-name
                                             </td>
                                             <td>
-                                               <p>The version of the application.</p>
+                                               <p>Group name - name assigned to the group</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -15038,7 +14994,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/image">/image</a>
+                                                        <a class="json-schema-ref" href="#/definitions/group-assignment">/group-assignment</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -15066,17 +15022,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing image</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images/image/{image-id}</strong></h3>
+                    <div class="operation-summary">create or update an existing group-assignment</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/group-assignments/group-assignment/{group-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing image</p>
+                        <p>create or update an existing group-assignment</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -15085,13 +15041,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>image object that needs to be created or updated</p>
+                                                <p><p>group-assignment object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/image">/image</a>
+                                            <a class="json-schema-ref" href="#/definitions/group-assignment">/group-assignment</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -15113,7 +15069,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -15142,10 +15098,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                image-id
+                                                group-id
                                             </td>
                                             <td>
-                                               <p>Image id, expected to be unique across cloud region</p>
+                                               <p>Group id, expected to be unique across cloud-region.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -15187,17 +15143,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing image</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images/image/{image-id}</strong></h3>
+                    <div class="operation-summary">delete an existing group-assignment</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/group-assignments/group-assignment/{group-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing image</p>
+                        <p>delete an existing group-assignment</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -15222,7 +15178,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -15251,10 +15207,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                image-id
+                                                group-id
                                             </td>
                                             <td>
-                                               <p>Image id, expected to be unique across cloud region</p>
+                                               <p>Group id, expected to be unique across cloud-region.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -15312,19 +15268,36 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--metadata-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--metadata-get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns metadata</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images/image/{image-id}/metadata</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/group-assignments/group-assignment/{group-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns metadata</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>relationship object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
+                                </div>
+                            </div></div>
+                                        </div>
+                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -15342,7 +15315,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -15371,10 +15344,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                image-id
+                                                group-id
                                             </td>
                                             <td>
-                                               <p>Image id, expected to be unique across cloud region</p>
+                                               <p>Group id, expected to be unique across cloud-region.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -15385,72 +15358,209 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--group-assignments-group-assignment--group-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/group-assignments/group-assignment/{group-id}/relationship-list/relationship</strong></h3>
+                        Tags:
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>delete an existing relationship</p>
+            
+                    </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                            </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                cloud-type
+                                                cloud-owner
                                             </td>
                                             <td>
-                                               <p>Type of the cloud (e.g., openstack)</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                owner-defined-type
+                                                cloud-region-id
                                             </td>
                                             <td>
-                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
+                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                image-name
+                                                group-id
                                             </td>
                                             <td>
-                                               <p>Image name</p>
+                                               <p>Group id, expected to be unique across cloud-region.</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-get" class="swagger--panel-operation-get panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">returns images</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images</strong></h3>
+                        Tags:
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>returns images</p>
+            
+                    </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                application
+                                                cloud-owner
                                             </td>
                                             <td>
-                                               <p>The application that the image instantiates.</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                application-vendor
+                                                cloud-region-id
                                             </td>
                                             <td>
-                                               <p>The vendor of the application.</p>
+                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-type
+                                            </td>
+                                            <td>
+                                               <p>Type of the cloud (e.g., openstack)</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -15462,10 +15572,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                application-version
+                                                owner-defined-type
                                             </td>
                                             <td>
-                                               <p>The version of the application.</p>
+                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -15501,7 +15611,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/metadata">/metadata</a>
+                                                        <a class="json-schema-ref" href="#/definitions/images">/images</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -15529,17 +15639,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--metadata-metadatum--metaname--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--metadata-metadatum--metaname--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns metadatum</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images/image/{image-id}/metadata/metadatum/{metaname}</strong></h3>
+                    <div class="operation-summary">returns image</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images/image/{image-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns metadatum</p>
+                        <p>returns image</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -15559,7 +15669,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -15602,21 +15712,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                metaname
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 cloud-type
@@ -15733,7 +15828,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/metadatum">/metadatum</a>
+                                                        <a class="json-schema-ref" href="#/definitions/image">/image</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -15761,17 +15856,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--metadata-metadatum--metaname--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--metadata-metadatum--metaname--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing metadatum</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images/image/{image-id}/metadata/metadatum/{metaname}</strong></h3>
+                    <div class="operation-summary">create or update an existing image</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images/image/{image-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing metadatum</p>
+                        <p>create or update an existing image</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -15780,13 +15875,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>metadatum object that needs to be created or updated</p>
+                                                <p><p>image object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/metadatum">/metadatum</a>
+                                            <a class="json-schema-ref" href="#/definitions/image">/image</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -15808,7 +15903,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -15851,21 +15946,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                metaname
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -15897,17 +15977,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--metadata-metadatum--metaname--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--metadata-metadatum--metaname--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing metadatum</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images/image/{image-id}/metadata/metadatum/{metaname}</strong></h3>
+                    <div class="operation-summary">delete an existing image</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images/image/{image-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing metadatum</p>
+                        <p>delete an existing image</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -15932,7 +16012,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -15975,21 +16055,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                metaname
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 resource-version
@@ -16037,36 +16102,19 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--metadata-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--metadata-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images/image/{image-id}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">returns metadata</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images/image/{image-id}/metadata</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
+                        <p>returns metadata</p>
             
                     </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -16084,7 +16132,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -16127,209 +16175,72 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images/image/{image-id}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
                                         <tr>
                                             <td>
-                                                cloud-owner
+                                                cloud-type
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Type of the cloud (e.g., openstack)</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                cloud-region-id
+                                                owner-defined-type
                                             </td>
                                             <td>
-                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
+                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                image-id
-                                            </td>
-                                            <td>
-                                               <p>Image id, expected to be unique across cloud region</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns oam-networks</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/oam-networks</strong></h3>
-                        Tags:
-                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns oam-networks</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                cloud-owner
+                                                image-name
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Image name</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                cloud-region-id
+                                                application
                                             </td>
                                             <td>
-                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
+                                               <p>The application that the image instantiates.</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                cloud-type
+                                                application-vendor
                                             </td>
                                             <td>
-                                               <p>Type of the cloud (e.g., openstack)</p>
+                                               <p>The vendor of the application.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -16341,10 +16252,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                owner-defined-type
+                                                application-version
                                             </td>
                                             <td>
-                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
+                                               <p>The version of the application.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -16380,7 +16291,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/oam-networks">/oam-networks</a>
+                                                        <a class="json-schema-ref" href="#/definitions/metadata">/metadata</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -16408,17 +16319,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--metadata-metadatum--metaname--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--metadata-metadatum--metaname--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns oam-network</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/oam-networks/oam-network/{network-uuid}</strong></h3>
+                    <div class="operation-summary">returns metadatum</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images/image/{image-id}/metadata/metadatum/{metaname}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns oam-network</p>
+                        <p>returns metadatum</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -16438,7 +16349,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -16467,10 +16378,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                network-uuid
+                                                image-id
+                                            </td>
+                                            <td>
+                                               <p>Image id, expected to be unique across cloud region</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                metaname
                                             </td>
                                             <td>
-                                               <p>UUID of the network. Unique across a cloud-region</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -16513,10 +16439,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                network-name
+                                                image-name
                                             </td>
                                             <td>
-                                               <p>Name of the network.</p>
+                                               <p>Image name</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -16528,14 +16454,44 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                cvlan-tag
+                                                application
                                             </td>
                                             <td>
-                                               <p>cvlan-id</p>
+                                               <p>The application that the image instantiates.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
-                                               <span class="json-property-type">integer</span>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                application-vendor
+                                            </td>
+                                            <td>
+                                               <p>The vendor of the application.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                application-version
+                                            </td>
+                                            <td>
+                                               <p>The version of the application.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
@@ -16567,7 +16523,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/oam-network">/oam-network</a>
+                                                        <a class="json-schema-ref" href="#/definitions/metadatum">/metadatum</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -16595,17 +16551,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--metadata-metadatum--metaname--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--metadata-metadatum--metaname--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing oam-network</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/oam-networks/oam-network/{network-uuid}</strong></h3>
+                    <div class="operation-summary">create or update an existing metadatum</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images/image/{image-id}/metadata/metadatum/{metaname}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing oam-network</p>
+                        <p>create or update an existing metadatum</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -16614,13 +16570,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>oam-network object that needs to be created or updated</p>
+                                                <p><p>metadatum object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/oam-network">/oam-network</a>
+                                            <a class="json-schema-ref" href="#/definitions/metadatum">/metadatum</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -16642,7 +16598,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -16671,10 +16627,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                network-uuid
+                                                image-id
+                                            </td>
+                                            <td>
+                                               <p>Image id, expected to be unique across cloud region</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                metaname
                                             </td>
                                             <td>
-                                               <p>UUID of the network. Unique across a cloud-region</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -16716,17 +16687,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--metadata-metadatum--metaname--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--metadata-metadatum--metaname--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing oam-network</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/oam-networks/oam-network/{network-uuid}</strong></h3>
+                    <div class="operation-summary">delete an existing metadatum</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images/image/{image-id}/metadata/metadatum/{metaname}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing oam-network</p>
+                        <p>delete an existing metadatum</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -16751,7 +16722,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -16780,10 +16751,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                network-uuid
+                                                image-id
+                                            </td>
+                                            <td>
+                                               <p>Image id, expected to be unique across cloud region</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                metaname
                                             </td>
                                             <td>
-                                               <p>UUID of the network. Unique across a cloud-region</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -16841,11 +16827,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/oam-networks/oam-network/{network-uuid}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images/image/{image-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -16888,7 +16874,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -16917,10 +16903,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                network-uuid
+                                                image-id
                                             </td>
                                             <td>
-                                               <p>UUID of the network. Unique across a cloud-region</p>
+                                               <p>Image id, expected to be unique across cloud region</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -16962,11 +16948,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--images-image--image-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/oam-networks/oam-network/{network-uuid}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/images/image/{image-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -16997,7 +16983,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -17026,10 +17012,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                network-uuid
+                                                image-id
                                             </td>
                                             <td>
-                                               <p>UUID of the network. Unique across a cloud-region</p>
+                                               <p>Image id, expected to be unique across cloud region</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -17071,36 +17057,19 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">returns oam-networks</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/oam-networks</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
+                        <p>returns oam-networks</p>
             
                     </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -17118,7 +17087,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -17145,6 +17114,36 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-type
+                                            </td>
+                                            <td>
+                                               <p>Type of the cloud (e.g., openstack)</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                owner-defined-type
+                                            </td>
+                                            <td>
+                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -17154,6 +17153,29 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/oam-networks">/oam-networks</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -17176,24 +17198,19 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">returns oam-network</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/oam-networks/oam-network/{network-uuid}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
+                        <p>returns oam-network</p>
             
                     </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -17211,7 +17228,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -17238,6 +17255,82 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                        <tr>
+                                            <td>
+                                                network-uuid
+                                            </td>
+                                            <td>
+                                               <p>UUID of the network. Unique across a cloud-region</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-type
+                                            </td>
+                                            <td>
+                                               <p>Type of the cloud (e.g., openstack)</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                owner-defined-type
+                                            </td>
+                                            <td>
+                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                network-name
+                                            </td>
+                                            <td>
+                                               <p>Name of the network.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cvlan-tag
+                                            </td>
+                                            <td>
+                                               <p>cvlan-id</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">integer</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -17247,6 +17340,29 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/oam-network">/oam-network</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -17269,19 +17385,36 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns snapshots</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/snapshots</strong></h3>
+                    <div class="operation-summary">create or update an existing oam-network</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/oam-networks/oam-network/{network-uuid}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns snapshots</p>
+                        <p>create or update an existing oam-network</p>
             
                     </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>oam-network object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/oam-network">/oam-network</a>
+                                </div>
+                            </div></div>
+                                        </div>
+                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -17299,7 +17432,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -17328,32 +17461,18 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                cloud-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the cloud (e.g., openstack)</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                owner-defined-type
+                                                network-uuid
                                             </td>
                                             <td>
-                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
+                                               <p>UUID of the network. Unique across a cloud-region</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -17365,29 +17484,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/snapshots">/snapshots</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -17410,19 +17506,24 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns snapshot</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/snapshots/snapshot/{snapshot-id}</strong></h3>
+                    <div class="operation-summary">delete an existing oam-network</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/oam-networks/oam-network/{network-uuid}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns snapshot</p>
+                        <p>delete an existing oam-network</p>
             
                     </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -17440,7 +17541,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -17469,10 +17570,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                snapshot-id
+                                                network-uuid
                                             </td>
                                             <td>
-                                               <p>Snapshot id, this is the key UUID assoc associated in glance with the snapshots.</p>
+                                               <p>UUID of the network. Unique across a cloud-region</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -17485,100 +17586,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                cloud-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the cloud (e.g., openstack)</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                owner-defined-type
-                                            </td>
-                                            <td>
-                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                snapshot-name
-                                            </td>
-                                            <td>
-                                               <p>Snapshot name</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                application
-                                            </td>
-                                            <td>
-                                               <p>The application that the image instantiates.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                application-vendor
-                                            </td>
-                                            <td>
-                                               <p>The vendor of the application.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                application-version
-                                            </td>
-                                            <td>
-                                               <p>The version of the application.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prev-snapshot-id
+                                                resource-version
                                             </td>
                                             <td>
-                                               <p>This field contains the UUID of the previous snapshot (if any).</p>
+                                               <p>resource-version for concurrency</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -17586,6 +17597,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -17597,29 +17609,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/snapshot">/snapshot</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -17642,17 +17631,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing snapshot</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/snapshots/snapshot/{snapshot-id}</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/oam-networks/oam-network/{network-uuid}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing snapshot</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -17661,13 +17650,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>snapshot object that needs to be created or updated</p>
+                                                <p><p>relationship object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/snapshot">/snapshot</a>
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -17689,7 +17678,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -17718,10 +17707,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                snapshot-id
+                                                network-uuid
                                             </td>
                                             <td>
-                                               <p>Snapshot id, this is the key UUID assoc associated in glance with the snapshots.</p>
+                                               <p>UUID of the network. Unique across a cloud-region</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -17763,17 +17752,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--oam-networks-oam-network--network-uuid--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing snapshot</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/snapshots/snapshot/{snapshot-id}</strong></h3>
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/oam-networks/oam-network/{network-uuid}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing snapshot</p>
+                        <p>delete an existing relationship</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -17798,7 +17787,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -17827,10 +17816,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                snapshot-id
+                                                network-uuid
                                             </td>
                                             <td>
-                                               <p>Snapshot id, this is the key UUID assoc associated in glance with the snapshots.</p>
+                                               <p>UUID of the network. Unique across a cloud-region</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -17841,22 +17830,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -17888,11 +17861,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/snapshots/snapshot/{snapshot-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -17935,7 +17908,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -17962,22 +17935,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                snapshot-id
-                                            </td>
-                                            <td>
-                                               <p>Snapshot id, this is the key UUID assoc associated in glance with the snapshots.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -18009,11 +17966,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/snapshots/snapshot/{snapshot-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -18044,7 +18001,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -18071,22 +18028,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                snapshot-id
-                                            </td>
-                                            <td>
-                                               <p>Snapshot id, this is the key UUID assoc associated in glance with the snapshots.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -18118,17 +18059,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns tenants</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants</strong></h3>
+                    <div class="operation-summary">returns snapshots</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/snapshots</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns tenants</p>
+                        <p>returns snapshots</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -18148,7 +18089,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -18231,7 +18172,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/tenants">/tenants</a>
+                                                        <a class="json-schema-ref" href="#/definitions/snapshots">/snapshots</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -18259,17 +18200,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns tenant</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}</strong></h3>
+                    <div class="operation-summary">returns snapshot</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/snapshots/snapshot/{snapshot-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns tenant</p>
+                        <p>returns snapshot</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -18289,7 +18230,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -18318,10 +18259,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                tenant-id
+                                                snapshot-id
                                             </td>
                                             <td>
-                                               <p>Unique id relative to the cloud-region.</p>
+                                               <p>Snapshot id, this is the key UUID assoc associated in glance with the snapshots.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -18364,10 +18305,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                tenant-name
+                                                snapshot-name
                                             </td>
                                             <td>
-                                               <p>Readable name of tenant</p>
+                                               <p>Snapshot name</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -18379,10 +18320,55 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                tenant-context
+                                                application
                                             </td>
                                             <td>
-                                               <p>This field will store the tenant context.</p>
+                                               <p>The application that the image instantiates.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                application-vendor
+                                            </td>
+                                            <td>
+                                               <p>The vendor of the application.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                application-version
+                                            </td>
+                                            <td>
+                                               <p>The version of the application.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                prev-snapshot-id
+                                            </td>
+                                            <td>
+                                               <p>This field contains the UUID of the previous snapshot (if any).</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -18418,7 +18404,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/tenant">/tenant</a>
+                                                        <a class="json-schema-ref" href="#/definitions/snapshot">/snapshot</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -18446,17 +18432,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing tenant</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}</strong></h3>
+                    <div class="operation-summary">create or update an existing snapshot</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/snapshots/snapshot/{snapshot-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing tenant</p>
+                        <p>create or update an existing snapshot</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -18465,13 +18451,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>tenant object that needs to be created or updated</p>
+                                                <p><p>snapshot object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/tenant">/tenant</a>
+                                            <a class="json-schema-ref" href="#/definitions/snapshot">/snapshot</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -18493,7 +18479,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -18522,10 +18508,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                tenant-id
+                                                snapshot-id
                                             </td>
                                             <td>
-                                               <p>Unique id relative to the cloud-region.</p>
+                                               <p>Snapshot id, this is the key UUID assoc associated in glance with the snapshots.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -18567,17 +18553,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing tenant</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}</strong></h3>
+                    <div class="operation-summary">delete an existing snapshot</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/snapshots/snapshot/{snapshot-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing tenant</p>
+                        <p>delete an existing snapshot</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -18602,7 +18588,144 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-region-id
+                                            </td>
+                                            <td>
+                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                snapshot-id
+                                            </td>
+                                            <td>
+                                               <p>Snapshot id, this is the key UUID assoc associated in glance with the snapshots.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                resource-version
+                                            </td>
+                                            <td>
+                                               <p>resource-version for concurrency</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/snapshots/snapshot/{snapshot-id}/relationship-list/relationship</strong></h3>
+                        Tags:
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>see node definition for valid relationships</p>
+            
+                    </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>relationship object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
+                                </div>
+                            </div></div>
+                                        </div>
+                            </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
+                                        <tr>
+                                            <td>
+                                                cloud-owner
+                                            </td>
+                                            <td>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -18631,10 +18754,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                tenant-id
+                                                snapshot-id
                                             </td>
                                             <td>
-                                               <p>Unique id relative to the cloud-region.</p>
+                                               <p>Snapshot id, this is the key UUID assoc associated in glance with the snapshots.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -18645,22 +18768,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -18692,35 +18799,23 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--snapshots-snapshot--snapshot-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/snapshots/snapshot/{snapshot-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
+                        <p>delete an existing relationship</p>
             
                     </section>
                        <section class="sw-request-body">
                                 
                                     <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
                         </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
                             </section>
                         <section class="sw-request-params">
                             <table class="table">
@@ -18739,7 +18834,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -18768,10 +18863,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                tenant-id
+                                                snapshot-id
                                             </td>
                                             <td>
-                                               <p>Unique id relative to the cloud-region.</p>
+                                               <p>Snapshot id, this is the key UUID assoc associated in glance with the snapshots.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -18813,24 +18908,19 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">returns tenants</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
+                        <p>returns tenants</p>
             
                     </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -18848,7 +18938,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -18877,18 +18967,32 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                tenant-id
+                                                cloud-type
                                             </td>
                                             <td>
-                                               <p>Unique id relative to the cloud-region.</p>
+                                               <p>Type of the cloud (e.g., openstack)</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                owner-defined-type
+                                            </td>
+                                            <td>
+                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
+                                        </td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -18900,6 +19004,29 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/tenants">/tenants</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -18922,17 +19049,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns vservers</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers</strong></h3>
+                    <div class="operation-summary">returns tenant</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns vservers</p>
+                        <p>returns tenant</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -18952,7 +19079,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -19081,7 +19208,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vservers">/vservers</a>
+                                                        <a class="json-schema-ref" href="#/definitions/tenant">/tenant</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -19109,19 +19236,36 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns vserver</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}</strong></h3>
+                    <div class="operation-summary">create or update an existing tenant</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns vserver</p>
+                        <p>create or update an existing tenant</p>
             
                     </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>tenant object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/tenant">/tenant</a>
+                                </div>
+                            </div></div>
+                                        </div>
+                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -19139,7 +19283,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -19182,12 +19326,73 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--delete" class="swagger--panel-operation-delete panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">delete an existing tenant</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}</strong></h3>
+                        Tags:
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>delete an existing tenant</p>
+            
+                    </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                            </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                vserver-id
+                                                cloud-owner
                                             </td>
                                             <td>
-                                               <p>Unique identifier for this vserver relative to its tenant</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -19200,100 +19405,42 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                cloud-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the cloud (e.g., openstack)</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                owner-defined-type
-                                            </td>
-                                            <td>
-                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                tenant-name
-                                            </td>
-                                            <td>
-                                               <p>Readable name of tenant</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                tenant-context
-                                            </td>
-                                            <td>
-                                               <p>This field will store the tenant context.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vserver-name
+                                                cloud-region-id
                                             </td>
                                             <td>
-                                               <p>Name of vserver</p>
+                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vserver-name2
+                                                tenant-id
                                             </td>
                                             <td>
-                                               <p>Alternative name of vserver</p>
+                                               <p>Unique id relative to the cloud-region.</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                resource-version
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>resource-version for concurrency</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -19301,34 +19448,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                in-maint
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">boolean</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                is-closed-loop-disabled
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">boolean</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -19340,29 +19460,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vserver">/vserver</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -19385,17 +19482,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing vserver</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing vserver</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -19404,13 +19501,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>vserver object that needs to be created or updated</p>
+                                                <p><p>relationship object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/vserver">/vserver</a>
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -19432,7 +19529,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -19475,22 +19572,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                vserver-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier for this vserver relative to its tenant</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -19522,17 +19603,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing vserver</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}</strong></h3>
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing vserver</p>
+                        <p>delete an existing relationship</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -19557,7 +19638,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -19600,38 +19681,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                vserver-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier for this vserver relative to its tenant</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -19663,17 +19712,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns l-interfaces</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces</strong></h3>
+                    <div class="operation-summary">returns vservers</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns l-interfaces</p>
+                        <p>returns vservers</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -19693,7 +19742,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -19736,22 +19785,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                vserver-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier for this vserver relative to its tenant</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 cloud-type
@@ -19812,79 +19845,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                vserver-name
-                                            </td>
-                                            <td>
-                                               <p>Name of vserver</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vserver-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternative name of vserver</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                in-maint
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">boolean</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                is-closed-loop-disabled
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">boolean</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -19911,7 +19871,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l-interfaces">/l-interfaces</a>
+                                                        <a class="json-schema-ref" href="#/definitions/vservers">/vservers</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -19939,17 +19899,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                    <div class="operation-summary">returns vserver</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns l-interface</p>
+                        <p>returns vserver</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -19969,7 +19929,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -20028,22 +19988,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 cloud-type
@@ -20177,51 +20121,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -20248,7 +20147,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l-interface">/l-interface</a>
+                                                        <a class="json-schema-ref" href="#/definitions/vserver">/vserver</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -20276,17 +20175,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                    <div class="operation-summary">create or update an existing vserver</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing l-interface</p>
+                        <p>create or update an existing vserver</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -20295,13 +20194,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>l-interface object that needs to be created or updated</p>
+                                                <p><p>vserver object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l-interface">/l-interface</a>
+                                            <a class="json-schema-ref" href="#/definitions/vserver">/vserver</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -20323,7 +20222,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -20382,22 +20281,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -20429,17 +20312,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                    <div class="operation-summary">delete an existing vserver</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing l-interface</p>
+                        <p>delete an existing vserver</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -20464,7 +20347,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -20523,22 +20406,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 resource-version
@@ -20586,17 +20453,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <div class="operation-summary">returns l-interfaces</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv4-address-list</p>
+                        <p>returns l-interfaces</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -20616,7 +20483,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -20677,42 +20544,40 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                cloud-type
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Type of the cloud (e.g., openstack)</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv4-address
+                                                owner-defined-type
                                             </td>
                                             <td>
-                                               <p>IP address</p>
+                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                cloud-type
+                                                tenant-name
                                             </td>
                                             <td>
-                                               <p>Type of the cloud (e.g., openstack)</p>
+                                               <p>Readable name of tenant</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -20724,10 +20589,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                owner-defined-type
+                                                tenant-context
                                             </td>
                                             <td>
-                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
+                                               <p>This field will store the tenant context.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -20739,10 +20604,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                tenant-name
+                                                vserver-name
                                             </td>
                                             <td>
-                                               <p>Readable name of tenant</p>
+                                               <p>Name of vserver</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -20754,10 +20619,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                tenant-context
+                                                vserver-name2
                                             </td>
                                             <td>
-                                               <p>This field will store the tenant context.</p>
+                                               <p>Alternative name of vserver</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -20769,10 +20634,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vserver-name
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Name of vserver</p>
+                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -20784,10 +20649,197 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vserver-name2
+                                                in-maint
                                             </td>
                                             <td>
-                                               <p>Alternative name of vserver</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">boolean</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                is-closed-loop-disabled
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">boolean</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/l-interfaces">/l-interfaces</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--get" class="swagger--panel-operation-get panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">returns l-interface</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                        Tags:
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>returns l-interface</p>
+            
+                    </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
+                                        <tr>
+                                            <td>
+                                                cloud-owner
+                                            </td>
+                                            <td>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-region-id
+                                            </td>
+                                            <td>
+                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                tenant-id
+                                            </td>
+                                            <td>
+                                               <p>Unique id relative to the cloud-region.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vserver-id
+                                            </td>
+                                            <td>
+                                               <p>Unique identifier for this vserver relative to its tenant</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name given to the interface</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-type
+                                            </td>
+                                            <td>
+                                               <p>Type of the cloud (e.g., openstack)</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -20799,10 +20851,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                owner-defined-type
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -20814,13 +20866,14 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                in-maint
+                                                tenant-name
                                             </td>
                                             <td>
+                                               <p>Readable name of tenant</p>
                                         </td>
                                             <td>query</td>
                                             <td>
-                                               <span class="json-property-type">boolean</span>
+                                               <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
@@ -20828,13 +20881,14 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                is-closed-loop-disabled
+                                                tenant-context
                                             </td>
                                             <td>
+                                               <p>This field will store the tenant context.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
-                                               <span class="json-property-type">boolean</span>
+                                               <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
@@ -20842,10 +20896,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-id
+                                                vserver-name
                                             </td>
                                             <td>
-                                               <p>ID of interface</p>
+                                               <p>Name of vserver</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -20857,10 +20911,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                macaddr
+                                                vserver-name2
                                             </td>
                                             <td>
-                                               <p>MAC address for the interface</p>
+                                               <p>Alternative name of vserver</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -20872,10 +20926,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                network-name
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Name of the network</p>
+                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -20887,14 +20941,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-id-inner
+                                                in-maint
                                             </td>
                                             <td>
-                                               <p>Inner VLAN tag</p>
                                         </td>
                                             <td>query</td>
                                             <td>
-                                               <span class="json-property-type">integer</span>
+                                               <span class="json-property-type">boolean</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
@@ -20902,10 +20955,24 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                neutron-network-id
+                                                is-closed-loop-disabled
                                             </td>
                                             <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">boolean</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-id
+                                            </td>
+                                            <td>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -20917,10 +20984,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                neutron-subnet-id
+                                                macaddr
                                             </td>
                                             <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
+                                               <p>MAC address for the interface</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                network-name
+                                            </td>
+                                            <td>
+                                               <p>Name of the network</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -20956,7 +21038,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
+                                                        <a class="json-schema-ref" href="#/definitions/l-interface">/l-interface</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -20984,17 +21066,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <div class="operation-summary">create or update an existing l-interface</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv4-address-list</p>
+                        <p>create or update an existing l-interface</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -21003,13 +21085,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>l3-interface-ipv4-address-list object that needs to be created or updated</p>
+                                                <p><p>l-interface object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
+                                            <a class="json-schema-ref" href="#/definitions/l-interface">/l-interface</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -21031,7 +21113,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -21106,22 +21188,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -21153,17 +21219,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <div class="operation-summary">delete an existing l-interface</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv4-address-list</p>
+                        <p>delete an existing l-interface</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -21188,7 +21254,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -21263,22 +21329,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 resource-version
@@ -21326,193 +21376,19 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                cloud-owner
-                                            </td>
-                                            <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                cloud-region-id
-                                            </td>
-                                            <td>
-                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                tenant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id relative to the cloud-region.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vserver-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier for this vserver relative to its tenant</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
+                        <p>returns l3-interface-ipv4-address-list</p>
             
                     </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -21530,7 +21406,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -21621,158 +21497,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                cloud-owner
-                                            </td>
-                                            <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                cloud-region-id
-                                            </td>
-                                            <td>
-                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                tenant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id relative to the cloud-region.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vserver-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier for this vserver relative to its tenant</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 cloud-type
@@ -22022,7 +21746,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
+                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -22050,17 +21774,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv6-address-list</p>
+                        <p>create or update an existing l3-interface-ipv4-address-list</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -22069,13 +21793,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>l3-interface-ipv6-address-list object that needs to be created or updated</p>
+                                                <p><p>l3-interface-ipv4-address-list object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
+                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -22097,7 +21821,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -22174,7 +21898,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv6-address
+                                                l3-interface-ipv4-address
                                             </td>
                                             <td>
                                                <p>IP address</p>
@@ -22219,17 +21943,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv6-address-list</p>
+                        <p>delete an existing l3-interface-ipv4-address-list</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -22254,7 +21978,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -22331,7 +22055,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv6-address
+                                                l3-interface-ipv4-address
                                             </td>
                                             <td>
                                                <p>IP address</p>
@@ -22392,11 +22116,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -22439,7 +22163,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -22516,7 +22240,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv6-address
+                                                l3-interface-ipv4-address
                                             </td>
                                             <td>
                                                <p>IP address</p>
@@ -22561,11 +22285,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -22596,7 +22320,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -22673,7 +22397,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv6-address
+                                                l3-interface-ipv4-address
                                             </td>
                                             <td>
                                                <p>IP address</p>
@@ -22718,177 +22442,19 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                cloud-owner
-                                            </td>
-                                            <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                cloud-region-id
-                                            </td>
-                                            <td>
-                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                tenant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id relative to the cloud-region.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vserver-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier for this vserver relative to its tenant</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
+                        <p>returns l3-interface-ipv6-address-list</p>
             
                     </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -22906,7 +22472,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -22981,132 +22547,12 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns sriov-vfs</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs</strong></h3>
-                        Tags:
-                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns sriov-vfs</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                cloud-owner
-                                            </td>
-                                            <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
-                                                cloud-region-id
-                                            </td>
-                                            <td>
-                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                tenant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id relative to the cloud-region.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vserver-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier for this vserver relative to its tenant</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
+                                                l3-interface-ipv6-address
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>IP address</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -23295,6 +22741,51 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
+                                        <tr>
+                                            <td>
+                                                vlan-id-inner
+                                            </td>
+                                            <td>
+                                               <p>Inner VLAN tag</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">integer</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                neutron-network-id
+                                            </td>
+                                            <td>
+                                               <p>Neutron network id of the interface that address belongs to</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                neutron-subnet-id
+                                            </td>
+                                            <td>
+                                               <p>Neutron id of subnet that address belongs to</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -23321,7 +22812,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/sriov-vfs">/sriov-vfs</a>
+                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -23349,19 +22840,36 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
+                    <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns sriov-vf</p>
+                        <p>create or update an existing l3-interface-ipv6-address-list</p>
             
                     </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>l3-interface-ipv6-address-list object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
+                                </div>
+                            </div></div>
+                                        </div>
+                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -23379,7 +22887,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -23456,10 +22964,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                pci-id
+                                                l3-interface-ipv6-address
                                             </td>
                                             <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
+                                               <p>IP address</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -23470,235 +22978,169 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                        Tags:
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>delete an existing l3-interface-ipv6-address-list</p>
+            
+                    </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                            </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                cloud-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the cloud (e.g., openstack)</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                owner-defined-type
-                                            </td>
-                                            <td>
-                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                tenant-name
-                                            </td>
-                                            <td>
-                                               <p>Readable name of tenant</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                tenant-context
-                                            </td>
-                                            <td>
-                                               <p>This field will store the tenant context.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vserver-name
-                                            </td>
-                                            <td>
-                                               <p>Name of vserver</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vserver-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternative name of vserver</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
+                                                cloud-owner
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                in-maint
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">boolean</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                is-closed-loop-disabled
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">boolean</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
+                                                cloud-region-id
                                             </td>
                                             <td>
-                                               <p>ID of interface</p>
+                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                macaddr
+                                                tenant-id
                                             </td>
                                             <td>
-                                               <p>MAC address for the interface</p>
+                                               <p>Unique id relative to the cloud-region.</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                network-name
+                                                vserver-id
                                             </td>
                                             <td>
-                                               <p>Name of the network</p>
+                                               <p>Unique identifier for this vserver relative to its tenant</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vf-vlan-filter
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>This metadata provides option to specify list of VLAN filters applied on VF to pass the traffic to VM.</p>
+                                               <p>Name given to the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vf-mac-filter
+                                                l3-interface-ipv6-address
                                             </td>
                                             <td>
-                                               <p>When MAC filters are specified, VF-agent service configures VFs to do MAC level filtering before the traffic is passed to VM.</p>
+                                               <p>IP address</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vf-vlan-strip
-                                            </td>
-                                            <td>
-                                               <p>When this field is set to true, VF will configured to strip the outer TAG before the traffic is passed to VM.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">boolean</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
+                                                resource-version
                                             </td>
                                             <td>
-                                               <p>Neutron network id of the interface</p>
+                                               <p>resource-version for concurrency</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -23706,6 +23148,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -23717,29 +23160,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/sriov-vf">/sriov-vf</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -23762,17 +23182,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing sriov-vf</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -23781,13 +23201,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>sriov-vf object that needs to be created or updated</p>
+                                                <p><p>relationship object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/sriov-vf">/sriov-vf</a>
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -23809,7 +23229,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -23886,10 +23306,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                pci-id
+                                                l3-interface-ipv6-address
                                             </td>
                                             <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
+                                               <p>IP address</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -23931,17 +23351,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing sriov-vf</p>
+                        <p>delete an existing relationship</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -23966,7 +23386,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -24043,10 +23463,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                pci-id
+                                                l3-interface-ipv6-address
                                             </td>
                                             <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
+                                               <p>IP address</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -24057,22 +23477,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -24104,11 +23508,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -24151,7 +23555,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -24226,22 +23630,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                pci-id
-                                            </td>
-                                            <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -24273,11 +23661,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -24308,7 +23696,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -24383,22 +23771,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                pci-id
-                                            </td>
-                                            <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -24430,17 +23802,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns vlans</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans</strong></h3>
+                    <div class="operation-summary">returns sriov-vfs</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns vlans</p>
+                        <p>returns sriov-vfs</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -24460,7 +23832,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -24739,7 +24111,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vlans">/vlans</a>
+                                                        <a class="json-schema-ref" href="#/definitions/sriov-vfs">/sriov-vfs</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -24767,17 +24139,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
+                    <div class="operation-summary">returns sriov-vf</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns vlan</p>
+                        <p>returns sriov-vf</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -24797,7 +24169,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -24874,10 +24246,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-interface
+                                                pci-id
                                             </td>
                                             <td>
-                                               <p>String that identifies the interface</p>
+                                               <p>PCI ID used to identify the sriov-vf</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -25068,25 +24440,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vpn-key
+                                                vf-vlan-filter
                                             </td>
                                             <td>
-                                               <p>This indicates the customers VPN ID associated with this vlan</p>
+                                               <p>This metadata provides option to specify list of VLAN filters applied on VF to pass the traffic to VM.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -25096,196 +24453,49 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vlan">/vlan</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
-                        Tags:
-                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing vlan</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>vlan object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/vlan">/vlan</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                cloud-owner
-                                            </td>
-                                            <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                cloud-region-id
-                                            </td>
-                                            <td>
-                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                tenant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id relative to the cloud-region.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
-                                                vserver-id
+                                                vf-mac-filter
                                             </td>
                                             <td>
-                                               <p>Unique identifier for this vserver relative to its tenant</p>
+                                               <p>When MAC filters are specified, VF-agent service configures VFs to do MAC level filtering before the traffic is passed to VM.</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                vf-vlan-strip
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>When this field is set to true, VF will configured to strip the outer TAG before the traffic is passed to VM.</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
-                                               <span class="json-property-type">string</span>
+                                               <span class="json-property-type">boolean</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-interface
+                                                neutron-network-id
                                             </td>
                                             <td>
-                                               <p>String that identifies the interface</p>
+                                               <p>Neutron network id of the interface</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -25297,6 +24507,29 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/sriov-vf">/sriov-vf</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -25319,23 +24552,35 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
+                    <div class="operation-summary">create or update an existing sriov-vf</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing vlan</p>
+                        <p>create or update an existing sriov-vf</p>
             
                     </section>
                        <section class="sw-request-body">
                                 
                                     <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
                         </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>sriov-vf object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/sriov-vf">/sriov-vf</a>
+                                </div>
+                            </div></div>
+                                        </div>
                             </section>
                         <section class="sw-request-params">
                             <table class="table">
@@ -25354,7 +24599,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -25431,10 +24676,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-interface
+                                                pci-id
                                             </td>
                                             <td>
-                                               <p>String that identifies the interface</p>
+                                               <p>PCI ID used to identify the sriov-vf</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -25445,22 +24690,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -25492,19 +24721,24 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <div class="operation-summary">delete an existing sriov-vf</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv4-address-list</p>
+                        <p>delete an existing sriov-vf</p>
             
                     </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -25522,7 +24756,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -25599,26 +24833,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
+                                                pci-id
                                             </td>
                                             <td>
-                                               <p>IP address</p>
+                                               <p>PCI ID used to identify the sriov-vf</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -25631,248 +24849,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                cloud-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the cloud (e.g., openstack)</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                owner-defined-type
-                                            </td>
-                                            <td>
-                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                tenant-name
-                                            </td>
-                                            <td>
-                                               <p>Readable name of tenant</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                tenant-context
-                                            </td>
-                                            <td>
-                                               <p>This field will store the tenant context.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vserver-name
-                                            </td>
-                                            <td>
-                                               <p>Name of vserver</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vserver-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternative name of vserver</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                in-maint
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">boolean</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                is-closed-loop-disabled
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">boolean</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vpn-key
-                                            </td>
-                                            <td>
-                                               <p>This indicates the customers VPN ID associated with this vlan</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-subnet-id
+                                                resource-version
                                             </td>
                                             <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
+                                               <p>resource-version for concurrency</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -25880,6 +24860,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -25891,29 +24872,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -25936,17 +24894,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv4-address-list</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -25955,13 +24913,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>l3-interface-ipv4-address-list object that needs to be created or updated</p>
+                                                <p><p>relationship object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -25983,7 +24941,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -26060,26 +25018,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
+                                                pci-id
                                             </td>
                                             <td>
-                                               <p>IP address</p>
+                                               <p>PCI ID used to identify the sriov-vf</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -26121,17 +25063,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv4-address-list</p>
+                        <p>delete an existing relationship</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -26156,7 +25098,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -26233,26 +25175,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
+                                                pci-id
                                             </td>
                                             <td>
-                                               <p>IP address</p>
+                                               <p>PCI ID used to identify the sriov-vf</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -26263,22 +25189,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -26310,36 +25220,19 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">returns vlans</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
+                        <p>returns vlans</p>
             
                     </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -26357,7 +25250,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -26434,207 +25327,180 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-interface
+                                                cloud-type
                                             </td>
                                             <td>
-                                               <p>String that identifies the interface</p>
+                                               <p>Type of the cloud (e.g., openstack)</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv4-address
+                                                owner-defined-type
                                             </td>
                                             <td>
-                                               <p>IP address</p>
+                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
                                         <tr>
                                             <td>
-                                                cloud-owner
+                                                tenant-name
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Readable name of tenant</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                cloud-region-id
+                                                tenant-context
                                             </td>
                                             <td>
-                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
+                                               <p>This field will store the tenant context.</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                tenant-id
+                                                vserver-name
                                             </td>
                                             <td>
-                                               <p>Unique id relative to the cloud-region.</p>
+                                               <p>Name of vserver</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vserver-id
+                                                vserver-name2
                                             </td>
                                             <td>
-                                               <p>Unique identifier for this vserver relative to its tenant</p>
+                                               <p>Alternative name of vserver</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-interface
+                                                in-maint
                                             </td>
                                             <td>
-                                               <p>String that identifies the interface</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">boolean</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                is-closed-loop-disabled
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">boolean</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-id
+                                            </td>
+                                            <td>
+                                               <p>ID of interface</p>
+                                        </td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv4-address
+                                                macaddr
                                             </td>
                                             <td>
-                                               <p>IP address</p>
+                                               <p>MAC address for the interface</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                network-name
+                                            </td>
+                                            <td>
+                                               <p>Name of the network</p>
+                                        </td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -26646,6 +25512,29 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/vlans">/vlans</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -26668,17 +25557,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <div class="operation-summary">returns vlan</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv6-address-list</p>
+                        <p>returns vlan</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -26698,7 +25587,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -26789,22 +25678,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 cloud-type
@@ -27013,51 +25886,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-subnet-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -27084,7 +25912,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
+                                                        <a class="json-schema-ref" href="#/definitions/vlan">/vlan</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -27112,17 +25940,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <div class="operation-summary">create or update an existing vlan</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv6-address-list</p>
+                        <p>create or update an existing vlan</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -27131,13 +25959,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>l3-interface-ipv6-address-list object that needs to be created or updated</p>
+                                                <p><p>vlan object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
+                                            <a class="json-schema-ref" href="#/definitions/vlan">/vlan</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -27159,7 +25987,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -27250,22 +26078,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -27297,17 +26109,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <div class="operation-summary">delete an existing vlan</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv6-address-list</p>
+                        <p>delete an existing vlan</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -27332,7 +26144,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -27423,22 +26235,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 resource-version
@@ -27486,36 +26282,19 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
+                        <p>returns l3-interface-ipv4-address-list</p>
             
                     </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -27533,7 +26312,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -27626,7 +26405,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv6-address
+                                                l3-interface-ipv4-address
                                             </td>
                                             <td>
                                                <p>IP address</p>
@@ -27640,177 +26419,257 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
                                         <tr>
                                             <td>
-                                                cloud-owner
+                                                cloud-type
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Type of the cloud (e.g., openstack)</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                cloud-region-id
+                                                owner-defined-type
                                             </td>
                                             <td>
-                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
+                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                tenant-id
+                                                tenant-name
                                             </td>
                                             <td>
-                                               <p>Unique id relative to the cloud-region.</p>
+                                               <p>Readable name of tenant</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vserver-id
+                                                tenant-context
                                             </td>
                                             <td>
-                                               <p>Unique identifier for this vserver relative to its tenant</p>
+                                               <p>This field will store the tenant context.</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                vserver-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Name of vserver</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-interface
+                                                vserver-name2
                                             </td>
                                             <td>
-                                               <p>String that identifies the interface</p>
+                                               <p>Alternative name of vserver</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv6-address
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>IP address</p>
+                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                in-maint
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">boolean</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                is-closed-loop-disabled
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">boolean</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-id
+                                            </td>
+                                            <td>
+                                               <p>ID of interface</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                macaddr
+                                            </td>
+                                            <td>
+                                               <p>MAC address for the interface</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                network-name
+                                            </td>
+                                            <td>
+                                               <p>Name of the network</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vlan-id-inner
+                                            </td>
+                                            <td>
+                                               <p>Inner VLAN tag</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">integer</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vpn-key
+                                            </td>
+                                            <td>
+                                               <p>This indicates the customers VPN ID associated with this vlan</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vlan-id-inner
+                                            </td>
+                                            <td>
+                                               <p>Inner VLAN tag</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">integer</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                neutron-network-id
+                                            </td>
+                                            <td>
+                                               <p>Neutron network id of the interface that address belongs to</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                neutron-subnet-id
+                                            </td>
+                                            <td>
+                                               <p>Neutron id of subnet that address belongs to</p>
+                                        </td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -27822,6 +26681,29 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -27844,17 +26726,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
+                        <p>create or update an existing l3-interface-ipv4-address-list</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -27863,13 +26745,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
+                                                <p><p>l3-interface-ipv4-address-list object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
+                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -27891,7 +26773,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -27982,6 +26864,22 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                        <tr>
+                                            <td>
+                                                l3-interface-ipv4-address
+                                            </td>
+                                            <td>
+                                               <p>IP address</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -28013,17 +26911,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
+                        <p>delete an existing l3-interface-ipv4-address-list</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -28048,7 +26946,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -28139,6 +27037,38 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                        <tr>
+                                            <td>
+                                                l3-interface-ipv4-address
+                                            </td>
+                                            <td>
+                                               <p>IP address</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                resource-version
+                                            </td>
+                                            <td>
+                                               <p>resource-version for concurrency</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -28170,11 +27100,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -28217,7 +27147,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -28276,89 +27206,12 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                cloud-owner
-                                            </td>
-                                            <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
-                                                cloud-region-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
+                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -28371,10 +27224,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                tenant-id
+                                                vlan-interface
                                             </td>
                                             <td>
-                                               <p>Unique id relative to the cloud-region.</p>
+                                               <p>String that identifies the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -28387,10 +27240,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vserver-id
+                                                l3-interface-ipv4-address
                                             </td>
                                             <td>
-                                               <p>Unique identifier for this vserver relative to its tenant</p>
+                                               <p>IP address</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -28432,19 +27285,24 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns volumes</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/volumes</strong></h3>
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns volumes</p>
+                        <p>delete an existing relationship</p>
             
                     </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -28462,7 +27320,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -28523,135 +27381,50 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                cloud-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the cloud (e.g., openstack)</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                owner-defined-type
-                                            </td>
-                                            <td>
-                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                tenant-name
-                                            </td>
-                                            <td>
-                                               <p>Readable name of tenant</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                tenant-context
-                                            </td>
-                                            <td>
-                                               <p>This field will store the tenant context.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vserver-name
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Name of vserver</p>
+                                               <p>Name given to the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vserver-name2
+                                                vlan-interface
                                             </td>
                                             <td>
-                                               <p>Alternative name of vserver</p>
+                                               <p>String that identifies the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                l3-interface-ipv4-address
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>IP address</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                in-maint
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">boolean</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                is-closed-loop-disabled
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">boolean</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -28663,29 +27436,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/volumes">/volumes</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -28708,17 +27458,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns volume</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/volumes/volume/{volume-id}</strong></h3>
+                    <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns volume</p>
+                        <p>returns l3-interface-ipv6-address-list</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -28738,7 +27488,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -28799,10 +27549,42 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                volume-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique ID of block storage volume relative to the vserver.</p>
+                                               <p>Name given to the interface</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vlan-interface
+                                            </td>
+                                            <td>
+                                               <p>String that identifies the interface</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                l3-interface-ipv6-address
+                                            </td>
+                                            <td>
+                                               <p>IP address</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -28946,6 +27728,126 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
+                                        <tr>
+                                            <td>
+                                                interface-id
+                                            </td>
+                                            <td>
+                                               <p>ID of interface</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                macaddr
+                                            </td>
+                                            <td>
+                                               <p>MAC address for the interface</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                network-name
+                                            </td>
+                                            <td>
+                                               <p>Name of the network</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vlan-id-inner
+                                            </td>
+                                            <td>
+                                               <p>Inner VLAN tag</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">integer</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vpn-key
+                                            </td>
+                                            <td>
+                                               <p>This indicates the customers VPN ID associated with this vlan</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vlan-id-inner
+                                            </td>
+                                            <td>
+                                               <p>Inner VLAN tag</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">integer</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                neutron-network-id
+                                            </td>
+                                            <td>
+                                               <p>Neutron network id of the interface that address belongs to</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                neutron-subnet-id
+                                            </td>
+                                            <td>
+                                               <p>Neutron id of subnet that address belongs to</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -28972,7 +27874,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/volume">/volume</a>
+                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -29000,17 +27902,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing volume</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/volumes/volume/{volume-id}</strong></h3>
+                    <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing volume</p>
+                        <p>create or update an existing l3-interface-ipv6-address-list</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -29019,13 +27921,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>volume object that needs to be created or updated</p>
+                                                <p><p>l3-interface-ipv6-address-list object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/volume">/volume</a>
+                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -29047,7 +27949,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -29108,10 +28010,42 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                volume-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique ID of block storage volume relative to the vserver.</p>
+                                               <p>Name given to the interface</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vlan-interface
+                                            </td>
+                                            <td>
+                                               <p>String that identifies the interface</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                l3-interface-ipv6-address
+                                            </td>
+                                            <td>
+                                               <p>IP address</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -29153,17 +28087,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing volume</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/volumes/volume/{volume-id}</strong></h3>
+                    <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing volume</p>
+                        <p>delete an existing l3-interface-ipv6-address-list</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -29188,7 +28122,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -29249,10 +28183,42 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                volume-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique ID of block storage volume relative to the vserver.</p>
+                                               <p>Name given to the interface</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vlan-interface
+                                            </td>
+                                            <td>
+                                               <p>String that identifies the interface</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                l3-interface-ipv6-address
+                                            </td>
+                                            <td>
+                                               <p>IP address</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -29310,11 +28276,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/volumes/volume/{volume-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -29357,7 +28323,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -29418,10 +28384,42 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                volume-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique ID of block storage volume relative to the vserver.</p>
+                                               <p>Name given to the interface</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vlan-interface
+                                            </td>
+                                            <td>
+                                               <p>String that identifies the interface</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                l3-interface-ipv6-address
+                                            </td>
+                                            <td>
+                                               <p>IP address</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -29463,11 +28461,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/volumes/volume/{volume-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -29498,7 +28496,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -29559,10 +28557,42 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                volume-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique ID of block storage volume relative to the vserver.</p>
+                                               <p>Name given to the interface</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vlan-interface
+                                            </td>
+                                            <td>
+                                               <p>String that identifies the interface</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                l3-interface-ipv6-address
+                                            </td>
+                                            <td>
+                                               <p>IP address</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -29604,19 +28634,36 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--volume-groups-"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--volume-groups-get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns volume-groups</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/volume-groups</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns volume-groups</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>relationship object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
+                                </div>
+                            </div></div>
+                                        </div>
+                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -29634,7 +28681,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -29663,32 +28710,66 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                cloud-type
+                                                tenant-id
                                             </td>
                                             <td>
-                                               <p>Type of the cloud (e.g., openstack)</p>
+                                               <p>Unique id relative to the cloud-region.</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                owner-defined-type
+                                                vserver-id
                                             </td>
                                             <td>
-                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
+                                               <p>Unique identifier for this vserver relative to its tenant</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name given to the interface</p>
+                                        </td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vlan-interface
+                                            </td>
+                                            <td>
+                                               <p>String that identifies the interface</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -29700,29 +28781,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/volume-groups">/volume-groups</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -29745,19 +28803,24 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--volume-groups-volume-group--volume-group-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--volume-groups-volume-group--volume-group-id--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns volume-group</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/volume-groups/volume-group/{volume-group-id}</strong></h3>
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns volume-group</p>
+                        <p>delete an existing relationship</p>
             
                     </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -29775,7 +28838,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -29804,10 +28867,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                volume-group-id
+                                                tenant-id
                                             </td>
                                             <td>
-                                               <p>Unique ID of volume-group.</p>
+                                               <p>Unique id relative to the cloud-region.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -29820,77 +28883,50 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                cloud-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the cloud (e.g., openstack)</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                owner-defined-type
-                                            </td>
-                                            <td>
-                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                volume-group-name
+                                                vserver-id
                                             </td>
                                             <td>
-                                               <p>Name of the volume group.</p>
+                                               <p>Unique identifier for this vserver relative to its tenant</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this volume-group</p>
+                                               <p>Name given to the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-type
+                                                vlan-interface
                                             </td>
                                             <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
+                                               <p>String that identifies the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -29902,29 +28938,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/volume-group">/volume-group</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -29947,17 +28960,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--volume-groups-volume-group--volume-group-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--volume-groups-volume-group--volume-group-id--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing volume-group</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/volume-groups/volume-group/{volume-group-id}</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing volume-group</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -29966,13 +28979,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>volume-group object that needs to be created or updated</p>
+                                                <p><p>relationship object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/volume-group">/volume-group</a>
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -29994,7 +29007,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -30023,10 +29036,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                volume-group-id
+                                                tenant-id
                                             </td>
                                             <td>
-                                               <p>Unique ID of volume-group.</p>
+                                               <p>Unique id relative to the cloud-region.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vserver-id
+                                            </td>
+                                            <td>
+                                               <p>Unique identifier for this vserver relative to its tenant</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -30068,17 +29097,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--volume-groups-volume-group--volume-group-id--"></span>
-            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--volume-groups-volume-group--volume-group-id--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing volume-group</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/volume-groups/volume-group/{volume-group-id}</strong></h3>
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing volume-group</p>
+                        <p>delete an existing relationship</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -30103,7 +29132,1768 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-region-id
+                                            </td>
+                                            <td>
+                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                tenant-id
+                                            </td>
+                                            <td>
+                                               <p>Unique id relative to the cloud-region.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vserver-id
+                                            </td>
+                                            <td>
+                                               <p>Unique identifier for this vserver relative to its tenant</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-get" class="swagger--panel-operation-get panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">returns volumes</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/volumes</strong></h3>
+                        Tags:
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>returns volumes</p>
+            
+                    </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
+                                        <tr>
+                                            <td>
+                                                cloud-owner
+                                            </td>
+                                            <td>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-region-id
+                                            </td>
+                                            <td>
+                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                tenant-id
+                                            </td>
+                                            <td>
+                                               <p>Unique id relative to the cloud-region.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vserver-id
+                                            </td>
+                                            <td>
+                                               <p>Unique identifier for this vserver relative to its tenant</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-type
+                                            </td>
+                                            <td>
+                                               <p>Type of the cloud (e.g., openstack)</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                owner-defined-type
+                                            </td>
+                                            <td>
+                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                tenant-name
+                                            </td>
+                                            <td>
+                                               <p>Readable name of tenant</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                tenant-context
+                                            </td>
+                                            <td>
+                                               <p>This field will store the tenant context.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vserver-name
+                                            </td>
+                                            <td>
+                                               <p>Name of vserver</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vserver-name2
+                                            </td>
+                                            <td>
+                                               <p>Alternative name of vserver</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                prov-status
+                                            </td>
+                                            <td>
+                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                in-maint
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">boolean</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                is-closed-loop-disabled
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">boolean</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/volumes">/volumes</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--get" class="swagger--panel-operation-get panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">returns volume</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/volumes/volume/{volume-id}</strong></h3>
+                        Tags:
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>returns volume</p>
+            
+                    </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
+                                        <tr>
+                                            <td>
+                                                cloud-owner
+                                            </td>
+                                            <td>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-region-id
+                                            </td>
+                                            <td>
+                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                tenant-id
+                                            </td>
+                                            <td>
+                                               <p>Unique id relative to the cloud-region.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vserver-id
+                                            </td>
+                                            <td>
+                                               <p>Unique identifier for this vserver relative to its tenant</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                volume-id
+                                            </td>
+                                            <td>
+                                               <p>Unique ID of block storage volume relative to the vserver.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-type
+                                            </td>
+                                            <td>
+                                               <p>Type of the cloud (e.g., openstack)</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                owner-defined-type
+                                            </td>
+                                            <td>
+                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                tenant-name
+                                            </td>
+                                            <td>
+                                               <p>Readable name of tenant</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                tenant-context
+                                            </td>
+                                            <td>
+                                               <p>This field will store the tenant context.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vserver-name
+                                            </td>
+                                            <td>
+                                               <p>Name of vserver</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vserver-name2
+                                            </td>
+                                            <td>
+                                               <p>Alternative name of vserver</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                prov-status
+                                            </td>
+                                            <td>
+                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                in-maint
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">boolean</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                is-closed-loop-disabled
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">boolean</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/volume">/volume</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--put" class="swagger--panel-operation-put panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">create or update an existing volume</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/volumes/volume/{volume-id}</strong></h3>
+                        Tags:
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>create or update an existing volume</p>
+            
+                    </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>volume object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/volume">/volume</a>
+                                </div>
+                            </div></div>
+                                        </div>
+                            </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
+                                        <tr>
+                                            <td>
+                                                cloud-owner
+                                            </td>
+                                            <td>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-region-id
+                                            </td>
+                                            <td>
+                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                tenant-id
+                                            </td>
+                                            <td>
+                                               <p>Unique id relative to the cloud-region.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vserver-id
+                                            </td>
+                                            <td>
+                                               <p>Unique identifier for this vserver relative to its tenant</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                volume-id
+                                            </td>
+                                            <td>
+                                               <p>Unique ID of block storage volume relative to the vserver.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--delete" class="swagger--panel-operation-delete panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">delete an existing volume</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/volumes/volume/{volume-id}</strong></h3>
+                        Tags:
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>delete an existing volume</p>
+            
+                    </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                            </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
+                                        <tr>
+                                            <td>
+                                                cloud-owner
+                                            </td>
+                                            <td>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-region-id
+                                            </td>
+                                            <td>
+                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                tenant-id
+                                            </td>
+                                            <td>
+                                               <p>Unique id relative to the cloud-region.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vserver-id
+                                            </td>
+                                            <td>
+                                               <p>Unique identifier for this vserver relative to its tenant</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                volume-id
+                                            </td>
+                                            <td>
+                                               <p>Unique ID of block storage volume relative to the vserver.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                resource-version
+                                            </td>
+                                            <td>
+                                               <p>resource-version for concurrency</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/volumes/volume/{volume-id}/relationship-list/relationship</strong></h3>
+                        Tags:
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>see node definition for valid relationships</p>
+            
+                    </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>relationship object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
+                                </div>
+                            </div></div>
+                                        </div>
+                            </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
+                                        <tr>
+                                            <td>
+                                                cloud-owner
+                                            </td>
+                                            <td>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-region-id
+                                            </td>
+                                            <td>
+                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                tenant-id
+                                            </td>
+                                            <td>
+                                               <p>Unique id relative to the cloud-region.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vserver-id
+                                            </td>
+                                            <td>
+                                               <p>Unique identifier for this vserver relative to its tenant</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                volume-id
+                                            </td>
+                                            <td>
+                                               <p>Unique ID of block storage volume relative to the vserver.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--tenants-tenant--tenant-id--vservers-vserver--vserver-id--volumes-volume--volume-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/tenants/tenant/{tenant-id}/vservers/vserver/{vserver-id}/volumes/volume/{volume-id}/relationship-list/relationship</strong></h3>
+                        Tags:
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>delete an existing relationship</p>
+            
+                    </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                            </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
+                                        <tr>
+                                            <td>
+                                                cloud-owner
+                                            </td>
+                                            <td>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-region-id
+                                            </td>
+                                            <td>
+                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                tenant-id
+                                            </td>
+                                            <td>
+                                               <p>Unique id relative to the cloud-region.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vserver-id
+                                            </td>
+                                            <td>
+                                               <p>Unique identifier for this vserver relative to its tenant</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                volume-id
+                                            </td>
+                                            <td>
+                                               <p>Unique ID of block storage volume relative to the vserver.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--volume-groups-"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--volume-groups-get" class="swagger--panel-operation-get panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">returns volume-groups</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/volume-groups</strong></h3>
+                        Tags:
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>returns volume-groups</p>
+            
+                    </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
+                                        <tr>
+                                            <td>
+                                                cloud-owner
+                                            </td>
+                                            <td>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-region-id
+                                            </td>
+                                            <td>
+                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-type
+                                            </td>
+                                            <td>
+                                               <p>Type of the cloud (e.g., openstack)</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                owner-defined-type
+                                            </td>
+                                            <td>
+                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/volume-groups">/volume-groups</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--volume-groups-volume-group--volume-group-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--volume-groups-volume-group--volume-group-id--get" class="swagger--panel-operation-get panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">returns volume-group</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/volume-groups/volume-group/{volume-group-id}</strong></h3>
+                        Tags:
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>returns volume-group</p>
+            
+                    </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
+                                        <tr>
+                                            <td>
+                                                cloud-owner
+                                            </td>
+                                            <td>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-region-id
+                                            </td>
+                                            <td>
+                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                volume-group-id
+                                            </td>
+                                            <td>
+                                               <p>Unique ID of volume-group.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-type
+                                            </td>
+                                            <td>
+                                               <p>Type of the cloud (e.g., openstack)</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                owner-defined-type
+                                            </td>
+                                            <td>
+                                               <p>Cloud-owner defined type indicator (e.g., dcp, lcp)</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                volume-group-name
+                                            </td>
+                                            <td>
+                                               <p>Name of the volume group.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                heat-stack-id
+                                            </td>
+                                            <td>
+                                               <p>Heat stack id corresponding to this volume-group</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                vnf-type
+                                            </td>
+                                            <td>
+                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/volume-group">/volume-group</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--volume-groups-volume-group--volume-group-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--volume-groups-volume-group--volume-group-id--put" class="swagger--panel-operation-put panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">create or update an existing volume-group</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/volume-groups/volume-group/{volume-group-id}</strong></h3>
+                        Tags:
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>create or update an existing volume-group</p>
+            
+                    </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>volume-group object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/volume-group">/volume-group</a>
+                                </div>
+                            </div></div>
+                                        </div>
+                            </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
+                                        <tr>
+                                            <td>
+                                                cloud-owner
+                                            </td>
+                                            <td>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                cloud-region-id
+                                            </td>
+                                            <td>
+                                               <p>Identifier used by the vendor for the region. Second part of composite key</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                volume-group-id
+                                            </td>
+                                            <td>
+                                               <p>Unique ID of volume-group.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--volume-groups-volume-group--volume-group-id--"></span>
+            <div id="operation--cloud-infrastructure-cloud-regions-cloud-region--cloud-owner---cloud-region-id--volume-groups-volume-group--volume-group-id--delete" class="swagger--panel-operation-delete panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">delete an existing volume-group</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/volume-groups/volume-group/{volume-group-id}</strong></h3>
+                        Tags:
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>delete an existing volume-group</p>
+            
+                    </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                            </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
+                                        <tr>
+                                            <td>
+                                                cloud-owner
+                                            </td>
+                                            <td>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -30240,7 +31030,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -30349,7 +31139,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 cloud-owner
                                             </td>
                                             <td>
-                                               <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                               <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -48492,555 +49282,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-pservers-pserver--hostname--p-interfaces-p-interface--interface-name--sriov-pfs-sriov-pf--pf-pci-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-pservers-pserver--hostname--p-interfaces-p-interface--interface-name--sriov-pfs-sriov-pf--pf-pci-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/pservers/pserver/{hostname}/p-interfaces/p-interface/{interface-name}/sriov-pfs/sriov-pf/{pf-pci-id}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                hostname
-                                            </td>
-                                            <td>
-                                               <p>Value from executing hostname on the compute node.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                pf-pci-id
-                                            </td>
-                                            <td>
-                                               <p>Identifier for the sriov-pf</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--cloud-infrastructure-pservers-pserver--hostname--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-pservers-pserver--hostname--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/pservers/pserver/{hostname}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                hostname
-                                            </td>
-                                            <td>
-                                               <p>Value from executing hostname on the compute node.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--cloud-infrastructure-pservers-pserver--hostname--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-pservers-pserver--hostname--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/pservers/pserver/{hostname}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                hostname
-                                            </td>
-                                            <td>
-                                               <p>Value from executing hostname on the compute node.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--cloud-infrastructure-virtual-data-centers-"></span>
-            <div id="operation--cloud-infrastructure-virtual-data-centers-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns virtual-data-centers</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/virtual-data-centers</strong></h3>
-                        Tags:
-                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns virtual-data-centers</p>
-            
-                    </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/virtual-data-centers">/virtual-data-centers</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--"></span>
-            <div id="operation--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns virtual-data-center</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/virtual-data-centers/virtual-data-center/{vdc-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns virtual-data-center</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vdc-id
-                                            </td>
-                                            <td>
-                                               <p>Unique ID of the vdc</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vdc-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the virtual data center</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/virtual-data-center">/virtual-data-center</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--"></span>
-            <div id="operation--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing virtual-data-center</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/virtual-data-centers/virtual-data-center/{vdc-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing virtual-data-center</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>virtual-data-center object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/virtual-data-center">/virtual-data-center</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vdc-id
-                                            </td>
-                                            <td>
-                                               <p>Unique ID of the vdc</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--"></span>
-            <div id="operation--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-pservers-pserver--hostname--p-interfaces-p-interface--interface-name--sriov-pfs-sriov-pf--pf-pci-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-pservers-pserver--hostname--p-interfaces-p-interface--interface-name--sriov-pfs-sriov-pf--pf-pci-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing virtual-data-center</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/virtual-data-centers/virtual-data-center/{vdc-id}</strong></h3>
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/pservers/pserver/{hostname}/p-interfaces/p-interface/{interface-name}/sriov-pfs/sriov-pf/{pf-pci-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing virtual-data-center</p>
+                        <p>delete an existing relationship</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -49062,10 +49314,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vdc-id
+                                                hostname
                                             </td>
                                             <td>
-                                               <p>Unique ID of the vdc</p>
+                                               <p>Value from executing hostname on the compute node.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -49078,12 +49330,28 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                resource-version
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>resource-version for concurrency</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                pf-pci-id
+                                            </td>
+                                            <td>
+                                               <p>Identifier for the sriov-pf</p>
+                                        </td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
@@ -49123,11 +49391,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-pservers-pserver--hostname--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-pservers-pserver--hostname--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/virtual-data-centers/virtual-data-center/{vdc-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/pservers/pserver/{hostname}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -49167,10 +49435,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vdc-id
+                                                hostname
                                             </td>
                                             <td>
-                                               <p>Unique ID of the vdc</p>
+                                               <p>Value from executing hostname on the compute node.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -49212,11 +49480,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--relationship-list-relationship-"></span>
-            <div id="operation--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-pservers-pserver--hostname--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-pservers-pserver--hostname--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/virtual-data-centers/virtual-data-center/{vdc-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/pservers/pserver/{hostname}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
@@ -49244,10 +49512,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vdc-id
+                                                hostname
                                             </td>
                                             <td>
-                                               <p>Unique ID of the vdc</p>
+                                               <p>Value from executing hostname on the compute node.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -49289,17 +49557,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--license-management-license-key-resources-"></span>
-            <div id="operation--license-management-license-key-resources-get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-virtual-data-centers-"></span>
+            <div id="operation--cloud-infrastructure-virtual-data-centers-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns license-key-resources</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/license-management/license-key-resources</strong></h3>
+                    <div class="operation-summary">returns virtual-data-centers</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/virtual-data-centers</strong></h3>
                         Tags:
-                            <a href="#tag-LicenseManagement">LicenseManagement</a>
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns license-key-resources</p>
+                        <p>returns virtual-data-centers</p>
             
                     </section>
 
@@ -49325,7 +49593,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/license-key-resources">/license-key-resources</a>
+                                                        <a class="json-schema-ref" href="#/definitions/virtual-data-centers">/virtual-data-centers</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -49353,17 +49621,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--license-management-license-key-resources-license-key-resource--att-uuid--"></span>
-            <div id="operation--license-management-license-key-resources-license-key-resource--att-uuid--get" class="swagger--panel-operation-get panel">
+        <span id="path--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--"></span>
+            <div id="operation--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns license-key-resource</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/license-management/license-key-resources/license-key-resource/{att-uuid}</strong></h3>
+                    <div class="operation-summary">returns virtual-data-center</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/cloud-infrastructure/virtual-data-centers/virtual-data-center/{vdc-id}</strong></h3>
                         Tags:
-                            <a href="#tag-LicenseManagement">LicenseManagement</a>
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns license-key-resource</p>
+                        <p>returns virtual-data-center</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -49380,9 +49648,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                att-uuid
+                                                vdc-id
                                             </td>
                                             <td>
+                                               <p>Unique ID of the vdc</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -49395,23 +49664,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                assignment-group-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                name
+                                                vdc-name
                                             </td>
                                             <td>
+                                               <p>Name of the virtual data center</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -49447,7 +49703,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/license-key-resource">/license-key-resource</a>
+                                                        <a class="json-schema-ref" href="#/definitions/virtual-data-center">/virtual-data-center</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -49475,17 +49731,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--license-management-license-key-resources-license-key-resource--att-uuid--"></span>
-            <div id="operation--license-management-license-key-resources-license-key-resource--att-uuid--put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--"></span>
+            <div id="operation--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing license-key-resource</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/license-management/license-key-resources/license-key-resource/{att-uuid}</strong></h3>
+                    <div class="operation-summary">create or update an existing virtual-data-center</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/virtual-data-centers/virtual-data-center/{vdc-id}</strong></h3>
                         Tags:
-                            <a href="#tag-LicenseManagement">LicenseManagement</a>
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing license-key-resource</p>
+                        <p>create or update an existing virtual-data-center</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -49494,13 +49750,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>license-key-resource object that needs to be created or updated</p>
+                                                <p><p>virtual-data-center object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/license-key-resource">/license-key-resource</a>
+                                            <a class="json-schema-ref" href="#/definitions/virtual-data-center">/virtual-data-center</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -49519,9 +49775,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                att-uuid
+                                                vdc-id
                                             </td>
                                             <td>
+                                               <p>Unique ID of the vdc</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -49563,17 +49820,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--license-management-license-key-resources-license-key-resource--att-uuid--"></span>
-            <div id="operation--license-management-license-key-resources-license-key-resource--att-uuid--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--"></span>
+            <div id="operation--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing license-key-resource</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/license-management/license-key-resources/license-key-resource/{att-uuid}</strong></h3>
+                    <div class="operation-summary">delete an existing virtual-data-center</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/virtual-data-centers/virtual-data-center/{vdc-id}</strong></h3>
                         Tags:
-                            <a href="#tag-LicenseManagement">LicenseManagement</a>
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing license-key-resource</p>
+                        <p>delete an existing virtual-data-center</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -49595,9 +49852,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                att-uuid
+                                                vdc-id
                                             </td>
                                             <td>
+                                               <p>Unique ID of the vdc</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -49655,13 +49913,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--license-management-license-key-resources-license-key-resource--att-uuid--relationship-list-relationship-"></span>
-            <div id="operation--license-management-license-key-resources-license-key-resource--att-uuid--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/license-management/license-key-resources/license-key-resource/{att-uuid}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/cloud-infrastructure/virtual-data-centers/virtual-data-center/{vdc-id}/relationship-list/relationship</strong></h3>
                         Tags:
-                            <a href="#tag-LicenseManagement">LicenseManagement</a>
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
@@ -49699,9 +49957,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                att-uuid
+                                                vdc-id
                                             </td>
                                             <td>
+                                               <p>Unique ID of the vdc</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -49743,13 +50002,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--license-management-license-key-resources-license-key-resource--att-uuid--relationship-list-relationship-"></span>
-            <div id="operation--license-management-license-key-resources-license-key-resource--att-uuid--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--relationship-list-relationship-"></span>
+            <div id="operation--cloud-infrastructure-virtual-data-centers-virtual-data-center--vdc-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/license-management/license-key-resources/license-key-resource/{att-uuid}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/cloud-infrastructure/virtual-data-centers/virtual-data-center/{vdc-id}/relationship-list/relationship</strong></h3>
                         Tags:
-                            <a href="#tag-LicenseManagement">LicenseManagement</a>
+                            <a href="#tag-CloudInfrastructure">CloudInfrastructure</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
@@ -49775,9 +50034,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                att-uuid
+                                                vdc-id
                                             </td>
                                             <td>
+                                               <p>Unique ID of the vdc</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -136672,9 +136932,186 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 </section>
                     </div>
                 </div>
-                <div id="definition-allotted-resources" class="panel panel-definition">
+                <div id="definition-allotted-resources" class="panel panel-definition">
+                        <div class="panel-heading">
+                                <h3 class="panel-title"><a name="/definitions/allotted-resources"></a>allotted-resources:
+                                    <span class="json-property-type"><span class="json-property-type">object</span>
+                <span class="json-property-range" title="Value limits"></span>
+                
+                </span>
+                                </h3>
+                        </div>
+                    <div class="panel-body">
+                                       <section class="json-schema-description">
+                                    <p>This object is used to store slices of services being offered</p>
+                            
+                                </section>
+
+                                <section class="json-schema-properties">
+                                    <dl>
+                                            <dt data-property-name="allotted-resource">
+                                                <span class="json-property-name">allotted-resource:</span>
+                                                <span class="json-property-type">object[]</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                            </dt>
+                                            <dd>
+                                                
+                                                <div class="json-inner-schema">
+                                                    
+                                                                    <section class="json-schema-array-items">
+                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/allotted-resource">allotted-resource</a>
+                                                                        </span>
+                                                                        <span class="json-property-range" title="Value limits"></span>
+                                                                        
+                                                                        <div class="json-inner-schema">
+                                                                            
+                                                                        </div>
+                                                                    </section>                </div>
+                                            </dd>
+                                    </dl>
+                                </section>
+                    </div>
+                </div>
+                <div id="definition-auth-info-item" class="panel panel-definition">
+                        <div class="panel-heading">
+                                <h3 class="panel-title"><a name="/definitions/auth-info-item"></a>auth-info-item:
+                                    <span class="json-property-type"><span class="json-property-type">object</span>
+                <span class="json-property-range" title="Value limits"></span>
+                
+                </span>
+                                </h3>
+                        </div>
+                    <div class="panel-body">
+                                       <section class="json-schema-description">
+                                    <p>Persistent auth info.</p>
+<h6 id="related-nodes">Related Nodes</h6>
+<ul>
+<li>TO tenant (One2One)</li>
+<li>FROM cloud-region (is composed of auth-info-item)</li></ul>
+                            
+                                </section>
+
+                                <section class="json-schema-properties">
+                                    <dl>
+                                            <dt data-property-name="auth-info-item-id">
+                                                <span class="json-property-name">auth-info-item-id:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                                 <span class="json-property-required"></span>
+                                            </dt>
+                                            <dd>
+                                                <p>Unique ID of auth-info-item.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="cloud-domain">
+                                                <span class="json-property-name">cloud-domain:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                                 <span class="json-property-required"></span>
+                                            </dt>
+                                            <dd>
+                                                <p>domain info for authentication.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="username">
+                                                <span class="json-property-name">username:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                                 <span class="json-property-required"></span>
+                                            </dt>
+                                            <dd>
+                                                <p>user name of auth infomation to access VIM.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="password">
+                                                <span class="json-property-name">password:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                                 <span class="json-property-required"></span>
+                                            </dt>
+                                            <dd>
+                                                <p>password of auth infomation to access VIM.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="auth-url">
+                                                <span class="json-property-name">auth-url:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                                 <span class="json-property-required"></span>
+                                            </dt>
+                                            <dd>
+                                                <p>authentication url of the cloud.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="ssl-cacert">
+                                                <span class="json-property-name">ssl-cacert:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                                 <span class="json-property-required"></span>
+                                            </dt>
+                                            <dd>
+                                                <p>ca file content if enabled ssl on auth-url.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="ssl-insecure">
+                                                <span class="json-property-name">ssl-insecure:</span>
+                                                <span class="json-property-type">boolean</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                                 <span class="json-property-required"></span>
+                                            </dt>
+                                            <dd>
+                                                <p>Whether to verify VIM's certificate.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="relationship-list">
+                                                <span class="json-property-name">relationship-list:</span>
+                                                <span class="json-property-type">object[]</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                            </dt>
+                                            <dd>
+                                                
+                                                <div class="json-inner-schema">
+                                                    
+                                                                    <section class="json-schema-array-items">
+                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/relationship">relationship</a>
+                                                                        </span>
+                                                                        <span class="json-property-range" title="Value limits"></span>
+                                                                        
+                                                                        <div class="json-inner-schema">
+                                                                            
+                                                                        </div>
+                                                                    </section>                </div>
+                                            </dd>
+                                    </dl>
+                                </section>
+                    </div>
+                </div>
+                <div id="definition-auth-info-items" class="panel panel-definition">
                         <div class="panel-heading">
-                                <h3 class="panel-title"><a name="/definitions/allotted-resources"></a>allotted-resources:
+                                <h3 class="panel-title"><a name="/definitions/auth-info-items"></a>auth-info-items:
                                     <span class="json-property-type"><span class="json-property-type">object</span>
                 <span class="json-property-range" title="Value limits"></span>
                 
@@ -136683,14 +137120,14 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </div>
                     <div class="panel-body">
                                        <section class="json-schema-description">
-                                    <p>This object is used to store slices of services being offered</p>
+                                    <p>Collection of persistent auth information to access to VIM.</p>
                             
                                 </section>
 
                                 <section class="json-schema-properties">
                                     <dl>
-                                            <dt data-property-name="allotted-resource">
-                                                <span class="json-property-name">allotted-resource:</span>
+                                            <dt data-property-name="auth-info-item">
+                                                <span class="json-property-name">auth-info-item:</span>
                                                 <span class="json-property-type">object[]</span>
                                                 <span class="json-property-range" title="Value limits"></span>
                                                 
@@ -136700,7 +137137,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div class="json-inner-schema">
                                                     
                                                                     <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/allotted-resource">allotted-resource</a>
+                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/auth-info-item">auth-info-item</a>
                                                                         </span>
                                                                         <span class="json-property-range" title="Value limits"></span>
                                                                         
@@ -137242,7 +137679,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </div>
                     <div class="panel-body">
                                        <section class="json-schema-description">
-                                    <p>cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&T's AIC.</p>
+                                    <p>cloud-region designates an installation of a cloud cluster or region or instantiation.</p>
 <h6 id="default-delete-scope">Default Delete Scope</h6>
 <p>THIS_NODE_ONLY</p>
 <h6 id="related-nodes">Related Nodes</h6>
@@ -137250,6 +137687,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <li>TO complex (Many2One)</li>
 <li>TO l3-network (Many2Many)</li>
 <li>TO tenant (comprises cloud-region, One2Many)</li>
+<li>TO auth-info-item (comprises cloud-region, One2Many)</li>
 <li>TO image (comprises cloud-region, One2Many)</li>
 <li>TO flavor (comprises cloud-region, One2Many)</li>
 <li>TO availability-zone (comprises cloud-region, One2Many)</li>
@@ -137274,7 +137712,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                  <span class="json-property-required"></span>
                                             </dt>
                                             <dd>
-                                                <p>Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname</p>
+                                                <p>Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname</p>
                                                 <div class="json-inner-schema">
                                                     
                                                 </div>
@@ -137585,6 +138023,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                                         
                                                                         <div class="json-inner-schema">
                                                                             
+                                                                        </div>
+                                                                    </section>                </div>
+                                            </dd>
+                                            <dt data-property-name="auth-info-items">
+                                                <span class="json-property-name">auth-info-items:</span>
+                                                <span class="json-property-type">object[]</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                            </dt>
+                                            <dd>
+                                                
+                                                <div class="json-inner-schema">
+                                                    
+                                                                    <section class="json-schema-array-items">
+                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/auth-info-item">auth-info-item</a>
+                                                                        </span>
+                                                                        <span class="json-property-range" title="Value limits"></span>
+                                                                        
+                                                                        <div class="json-inner-schema">
+                                                                            
                                                                         </div>
                                                                     </section>                </div>
                                             </dd>
@@ -141317,26 +141775,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                                         </div>
                                                                     </section>                </div>
                                             </dd>
-                                            <dt data-property-name="license-management">
-                                                <span class="json-property-name">license-management:</span>
-                                                <span class="json-property-type">object</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                
-                                                <div class="json-inner-schema">
-                                                    
-                                                                    <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/license-management">license-management</a>
-                                                                        </span>
-                                                                        <span class="json-property-range" title="Value limits"></span>
-                                                                        
-                                                                        <div class="json-inner-schema">
-                                                                            
-                                                                        </div>
-                                                                    </section>                </div>
-                                            </dd>
                                             <dt data-property-name="business">
                                                 <span class="json-property-name">business:</span>
                                                 <span class="json-property-type">object</span>
@@ -143636,259 +144074,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 </section>
                     </div>
                 </div>
-                <div id="definition-license-key-resource" class="panel panel-definition">
-                        <div class="panel-heading">
-                                <h3 class="panel-title"><a name="/definitions/license-key-resource"></a>license-key-resource:
-                                    <span class="json-property-type"><span class="json-property-type">object</span>
-                <span class="json-property-range" title="Value limits"></span>
-                
-                </span>
-                                </h3>
-                        </div>
-                    <div class="panel-body">
-                                       <section class="json-schema-description">
-                                    <p>OBSOLETE OBJECT:  do not use</p>
-<h6 id="related-nodes">Related Nodes</h6>
-<ul>
-<li>FROM generic-vnf</li></ul>
-                            
-                                </section>
-
-                                <section class="json-schema-properties">
-                                    <dl>
-                                            <dt data-property-name="att-uuid">
-                                                <span class="json-property-name">att-uuid:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                                 <span class="json-property-required"></span>
-                                            </dt>
-                                            <dd>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="assignment-type">
-                                                <span class="json-property-name">assignment-type:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="assignment-status">
-                                                <span class="json-property-name">assignment-status:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="assignment-group-uuid">
-                                                <span class="json-property-name">assignment-group-uuid:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                                 <span class="json-property-required"></span>
-                                            </dt>
-                                            <dd>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="assignment-date">
-                                                <span class="json-property-name">assignment-date:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="name">
-                                                <span class="json-property-name">name:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="model-uuid">
-                                                <span class="json-property-name">model-uuid:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="model-version">
-                                                <span class="json-property-name">model-version:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="license-key">
-                                                <span class="json-property-name">license-key:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="license-key-file-url">
-                                                <span class="json-property-name">license-key-file-url:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="supplier-release-list">
-                                                <span class="json-property-name">supplier-release-list:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="resource-version">
-                                                <span class="json-property-name">resource-version:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Used for optimistic concurrency.  Must be empty on create, valid on update and delete.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="relationship-list">
-                                                <span class="json-property-name">relationship-list:</span>
-                                                <span class="json-property-type">object[]</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                
-                                                <div class="json-inner-schema">
-                                                    
-                                                                    <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/relationship">relationship</a>
-                                                                        </span>
-                                                                        <span class="json-property-range" title="Value limits"></span>
-                                                                        
-                                                                        <div class="json-inner-schema">
-                                                                            
-                                                                        </div>
-                                                                    </section>                </div>
-                                            </dd>
-                                    </dl>
-                                </section>
-                    </div>
-                </div>
-                <div id="definition-license-key-resources" class="panel panel-definition">
-                        <div class="panel-heading">
-                                <h3 class="panel-title"><a name="/definitions/license-key-resources"></a>license-key-resources:
-                                    <span class="json-property-type"><span class="json-property-type">object</span>
-                <span class="json-property-range" title="Value limits"></span>
-                
-                </span>
-                                </h3>
-                        </div>
-                    <div class="panel-body">
-
-                                <section class="json-schema-properties">
-                                    <dl>
-                                            <dt data-property-name="license-key-resource">
-                                                <span class="json-property-name">license-key-resource:</span>
-                                                <span class="json-property-type">object[]</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                
-                                                <div class="json-inner-schema">
-                                                    
-                                                                    <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/license-key-resource">license-key-resource</a>
-                                                                        </span>
-                                                                        <span class="json-property-range" title="Value limits"></span>
-                                                                        
-                                                                        <div class="json-inner-schema">
-                                                                            
-                                                                        </div>
-                                                                    </section>                </div>
-                                            </dd>
-                                    </dl>
-                                </section>
-                    </div>
-                </div>
-                <div id="definition-license-management" class="panel panel-definition">
-                        <div class="panel-heading">
-                                <h3 class="panel-title"><a name="/definitions/license-management"></a>license-management:
-                                    <span class="json-property-type"><span class="json-property-type">object</span>
-                <span class="json-property-range" title="Value limits"></span>
-                
-                </span>
-                                </h3>
-                        </div>
-                    <div class="panel-body">
-
-                                <section class="json-schema-properties">
-                                    <dl>
-                                            <dt data-property-name="license-key-resources">
-                                                <span class="json-property-name">license-key-resources:</span>
-                                                <span class="json-property-type">object[]</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                
-                                                <div class="json-inner-schema">
-                                                    
-                                                                    <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/license-key-resource">license-key-resource</a>
-                                                                        </span>
-                                                                        <span class="json-property-range" title="Value limits"></span>
-                                                                        
-                                                                        <div class="json-inner-schema">
-                                                                            
-                                                                        </div>
-                                                                    </section>                </div>
-                                            </dd>
-                                    </dl>
-                                </section>
-                    </div>
-                </div>
                 <div id="definition-licenses" class="panel panel-definition">
                         <div class="panel-heading">
                                 <h3 class="panel-title"><a name="/definitions/licenses"></a>licenses:
@@ -144034,7 +144219,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 
                                             </dt>
                                             <dd>
-                                                <p>v4, v6, or ds for dual stack (should be att-ip-version)</p>
+                                                <p>v4, v6, or ds for dual stack</p>
                                                 <div class="json-inner-schema">
                                                     
                                                 </div>
@@ -152496,6 +152681,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <li>TO l3-network (Many2Many)</li>
 <li>TO service-subscription (Many2Many)</li>
 <li>TO vserver (comprises tenant, One2Many)</li>
+<li>FROM auth-info-item</li>
 <li>FROM cloud-region (is composed of tenant)</li>
 <li>FROM group-assignment</li>
 <li>FROM volume-group</li></ul>
index 79bf085..95cffc2 100644 (file)
@@ -15,7 +15,7 @@
 <body>
 <div class="container">
     <h1>Active and Available Inventory REST API.</h1>
-    <p class="sw-info-version">Version: <span>v10</span></p>
+    <p class="sw-info-version">Version: <span>v11</span></p>
     <p><p>Copyright &copy; 2017 AT&amp;T Intellectual Property. All rights reserved.<br/>
 <br/>
 Licensed under the Creative Commons License, Attribution 4.0 Intl. (the &quot;License&quot;); you may not use this documentation except in compliance with the License.<br/>
@@ -3769,506 +3769,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     <tr>
                         <td><a href="#operation--network-vnfcs-vnfc--vnfc-name--relationship-list-relationship-delete">DELETE /network/vnfcs/vnfc/{vnfc-name}/relationship-list/relationship</a></td>
                         <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-get">GET /network/vpes</a></td>
-                        <td><p>returns vpes</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--get">GET /network/vpes/vpe/{vnf-id}</a></td>
-                        <td><p>returns vpe</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--put">PUT /network/vpes/vpe/{vnf-id}</a></td>
-                        <td><p>create or update an existing vpe</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--delete">DELETE /network/vpes/vpe/{vnf-id}</a></td>
-                        <td><p>delete an existing vpe</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--entitlements-get">GET /network/vpes/vpe/{vnf-id}/entitlements</a></td>
-                        <td><p>returns entitlements</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--get">GET /network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}</a></td>
-                        <td><p>returns entitlement</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--put">PUT /network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}</a></td>
-                        <td><p>create or update an existing entitlement</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--delete">DELETE /network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}</a></td>
-                        <td><p>delete an existing entitlement</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-get">GET /network/vpes/vpe/{vnf-id}/l-interfaces</a></td>
-                        <td><p>returns l-interfaces</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--get">GET /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}</a></td>
-                        <td><p>returns l-interface</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}</a></td>
-                        <td><p>create or update an existing l-interface</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}</a></td>
-                        <td><p>delete an existing l-interface</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get">GET /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>returns l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>create or update an existing l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>delete an existing l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get">GET /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>returns l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>create or update an existing l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>delete an existing l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-get">GET /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs</a></td>
-                        <td><p>returns sriov-vfs</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--get">GET /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</a></td>
-                        <td><p>returns sriov-vf</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</a></td>
-                        <td><p>create or update an existing sriov-vf</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</a></td>
-                        <td><p>delete an existing sriov-vf</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-get">GET /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans</a></td>
-                        <td><p>returns vlans</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--get">GET /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</a></td>
-                        <td><p>returns vlan</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</a></td>
-                        <td><p>create or update an existing vlan</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</a></td>
-                        <td><p>delete an existing vlan</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get">GET /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>returns l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>create or update an existing l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>delete an existing l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get">GET /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>returns l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>create or update an existing l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>delete an existing l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces</a></td>
-                        <td><p>returns lag-interfaces</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}</a></td>
-                        <td><p>returns lag-interface</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}</a></td>
-                        <td><p>create or update an existing lag-interface</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}</a></td>
-                        <td><p>delete an existing lag-interface</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces</a></td>
-                        <td><p>returns l-interfaces</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</a></td>
-                        <td><p>returns l-interface</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</a></td>
-                        <td><p>create or update an existing l-interface</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</a></td>
-                        <td><p>delete an existing l-interface</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>returns l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>create or update an existing l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>delete an existing l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>returns l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>create or update an existing l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>delete an existing l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs</a></td>
-                        <td><p>returns sriov-vfs</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</a></td>
-                        <td><p>returns sriov-vf</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</a></td>
-                        <td><p>create or update an existing sriov-vf</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</a></td>
-                        <td><p>delete an existing sriov-vf</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans</a></td>
-                        <td><p>returns vlans</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</a></td>
-                        <td><p>returns vlan</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</a></td>
-                        <td><p>create or update an existing vlan</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</a></td>
-                        <td><p>delete an existing vlan</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>returns l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>create or update an existing l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</a></td>
-                        <td><p>delete an existing l3-interface-ipv4-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get">GET /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>returns l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>create or update an existing l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</a></td>
-                        <td><p>delete an existing l3-interface-ipv6-address-list</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--licenses-get">GET /network/vpes/vpe/{vnf-id}/licenses</a></td>
-                        <td><p>returns licenses</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--get">GET /network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}</a></td>
-                        <td><p>returns license</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--put">PUT /network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}</a></td>
-                        <td><p>create or update an existing license</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--delete">DELETE /network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}</a></td>
-                        <td><p>delete an existing license</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--relationship-list-relationship-put">PUT /network/vpes/vpe/{vnf-id}/relationship-list/relationship</a></td>
-                        <td><p>see node definition for valid relationships</p>
-        </td>
-                    </tr>
-                    <tr>
-                        <td><a href="#operation--network-vpes-vpe--vnf-id--relationship-list-relationship-delete">DELETE /network/vpes/vpe/{vnf-id}/relationship-list/relationship</a></td>
-                        <td><p>delete an existing relationship</p>
         </td>
                     </tr>
                     <tr>
@@ -105857,17 +105357,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-"></span>
-            <div id="operation--network-vpes-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-"></span>
+            <div id="operation--network-vpls-pes-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns vpes</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes</strong></h3>
+                    <div class="operation-summary">returns vpls-pes</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns vpes</p>
+                        <p>returns vpls-pes</p>
             
                     </section>
 
@@ -105893,7 +105393,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vpes">/vpes</a>
+                                                        <a class="json-schema-ref" href="#/definitions/vpls-pes">/vpls-pes</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -105921,17 +105421,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns vpe</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}</strong></h3>
+                    <div class="operation-summary">returns vpls-pe</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns vpe</p>
+                        <p>returns vpls-pe</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -105948,10 +105448,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -105962,102 +105461,12 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
-                                            </td>
-                                            <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 prov-status
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -106093,7 +105502,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vpe">/vpe</a>
+                                                        <a class="json-schema-ref" href="#/definitions/vpls-pe">/vpls-pe</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -106121,17 +105530,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing vpe</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}</strong></h3>
+                    <div class="operation-summary">create or update an existing vpls-pe</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing vpe</p>
+                        <p>create or update an existing vpls-pe</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -106140,13 +105549,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>vpe object that needs to be created or updated</p>
+                                                <p><p>vpls-pe object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/vpe">/vpe</a>
+                                            <a class="json-schema-ref" href="#/definitions/vpls-pe">/vpls-pe</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -106165,10 +105574,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -106210,17 +105618,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing vpe</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}</strong></h3>
+                    <div class="operation-summary">delete an existing vpls-pe</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing vpe</p>
+                        <p>delete an existing vpls-pe</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -106242,10 +105650,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -106303,17 +105710,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--entitlements-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--entitlements-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns entitlements</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/entitlements</strong></h3>
+                    <div class="operation-summary">returns lag-interfaces</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns entitlements</p>
+                        <p>returns lag-interfaces</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -106330,10 +105737,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -106346,25 +105752,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Alternate name of VNF.</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -106374,42 +105765,122 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/lag-interfaces">/lag-interfaces</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--get" class="swagger--panel-operation-get panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">returns lag-interface</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}</strong></h3>
+                        Tags:
+                            <a href="#tag-Network">Network</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>returns lag-interface</p>
+            
+                    </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                vnf-type
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                service-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -106421,10 +105892,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -106436,10 +105907,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -106475,7 +105946,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/entitlements">/entitlements</a>
+                                                        <a class="json-schema-ref" href="#/definitions/lag-interface">/lag-interface</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -106503,249 +105974,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns entitlement</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns entitlement</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID for the entitlement group the resource comes from, should be uuid.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID of an entitlement resource.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
-                                            </td>
-                                            <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/entitlement">/entitlement</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing entitlement</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}</strong></h3>
+                    <div class="operation-summary">create or update an existing lag-interface</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing entitlement</p>
+                        <p>create or update an existing lag-interface</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -106754,13 +105993,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>entitlement object that needs to be created or updated</p>
+                                                <p><p>lag-interface object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/entitlement">/entitlement</a>
+                                            <a class="json-schema-ref" href="#/definitions/lag-interface">/lag-interface</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -106779,26 +106018,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique ID for the entitlement group the resource comes from, should be uuid.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -106811,10 +106033,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                resource-uuid
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique ID of an entitlement resource.</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -106856,17 +106078,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing entitlement</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}</strong></h3>
+                    <div class="operation-summary">delete an existing lag-interface</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing entitlement</p>
+                        <p>delete an existing lag-interface</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -106888,26 +106110,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique ID for the entitlement group the resource comes from, should be uuid.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -106920,10 +106125,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                resource-uuid
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique ID of an entitlement resource.</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -106981,241 +106186,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID for the entitlement group the resource comes from, should be uuid.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID of an entitlement resource.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--entitlements-entitlement--group-uuid---resource-uuid--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID for the entitlement group the resource comes from, should be uuid.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID of an entitlement resource.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l-interfaces</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -107238,10 +106213,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -107254,70 +106228,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -107329,10 +106259,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -107344,10 +106274,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -107411,11 +106341,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -107438,10 +106368,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -107457,7 +106386,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -107470,70 +106399,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>Name given to the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -107545,10 +106430,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -107560,10 +106445,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -107672,11 +106557,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -107716,10 +106601,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -107777,11 +106677,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -107809,10 +106709,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -107886,11 +106801,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -107913,10 +106828,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -107932,7 +106846,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -107945,10 +106859,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv4-address
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>IP address</p>
+                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -107961,70 +106875,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
+                                                l3-interface-ipv4-address
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>IP address</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -108036,10 +106906,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -108051,10 +106921,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -108208,11 +107078,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -108252,10 +107122,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -108329,11 +107214,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -108361,10 +107246,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -108454,11 +107354,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -108498,10 +107398,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -108575,11 +107490,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -108607,10 +107522,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -108684,11 +107614,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -108711,10 +107641,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -108730,7 +107659,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -108743,10 +107672,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv6-address
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>IP address</p>
+                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -108759,70 +107688,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
+                                                l3-interface-ipv6-address
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>IP address</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -108834,10 +107719,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -108849,10 +107734,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -109006,11 +107891,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -109050,10 +107935,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -109127,11 +108027,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -109159,10 +108059,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -109252,11 +108167,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -109296,10 +108211,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -109373,11 +108303,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -109405,10 +108335,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -109482,11 +108427,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -109526,10 +108471,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -109587,11 +108547,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -109619,10 +108579,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -109680,11 +108655,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns sriov-vfs</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -109707,10 +108682,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -109726,7 +108700,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -109739,70 +108713,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>Name given to the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -109814,10 +108744,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -109829,10 +108759,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -109941,11 +108871,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -109968,10 +108898,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -109987,7 +108916,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -110000,10 +108929,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                pci-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
+                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -110016,70 +108945,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
+                                                pci-id
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>PCI ID used to identify the sriov-vf</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -110091,10 +108976,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -110106,10 +108991,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -110278,11 +109163,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -110322,10 +109207,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -110399,11 +109299,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -110431,10 +109331,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -110524,11 +109439,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -110568,10 +109483,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -110645,11 +109575,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -110677,10 +109607,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -110754,11 +109699,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns vlans</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -110781,10 +109726,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -110800,7 +109744,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -110813,70 +109757,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>Name given to the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -110888,10 +109788,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -110903,10 +109803,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -111015,11 +109915,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -111042,10 +109942,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111061,7 +109960,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111074,10 +109973,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-interface
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>String that identifies the interface</p>
+                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111090,70 +109989,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
+                                                vlan-interface
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>String that identifies the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -111165,10 +110020,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -111180,10 +110035,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -111322,11 +110177,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -111366,10 +110221,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111443,11 +110313,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -111475,10 +110345,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111568,11 +110453,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -111595,10 +110480,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111614,7 +110498,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111627,10 +110511,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-interface
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>String that identifies the interface</p>
+                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111643,10 +110527,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv4-address
+                                                vlan-interface
                                             </td>
                                             <td>
-                                               <p>IP address</p>
+                                               <p>String that identifies the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -111659,70 +110543,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
+                                                l3-interface-ipv4-address
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>IP address</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -111734,10 +110574,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -111749,10 +110589,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-role
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -111936,11 +110776,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -111980,10 +110820,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -112073,11 +110928,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -112105,10 +110960,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -112124,144 +110978,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -112320,6 +111037,22 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                        <tr>
+                                            <td>
+                                                resource-version
+                                            </td>
+                                            <td>
+                                               <p>resource-version for concurrency</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -112351,23 +111084,35 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
                        <section class="sw-request-body">
                                 
                                     <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
                         </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>relationship object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
+                                </div>
+                            </div></div>
+                                        </div>
                             </section>
                         <section class="sw-request-params">
                             <table class="table">
@@ -112383,10 +111128,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -112476,19 +111236,24 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv6-address-list</p>
+                        <p>delete an existing relationship</p>
             
                     </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -112503,10 +111268,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -112551,7 +111331,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv6-address
+                                                l3-interface-ipv4-address
                                             </td>
                                             <td>
                                                <p>IP address</p>
@@ -112565,79 +111345,139 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                        Tags:
+                            <a href="#tag-Network">Network</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>returns l3-interface-ipv6-address-list</p>
+            
+                    </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                vnf-name
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Name of VNF.</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name2
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Alternate name of VNF.</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-type
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
+                                               <p>Name given to the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                service-id
+                                                vlan-interface
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>String that identifies the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                l3-interface-ipv6-address
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>IP address</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
@@ -112645,7 +111485,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 prov-status
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -112657,10 +111497,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>ID of interface</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-role
+                                            </td>
+                                            <td>
+                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -112844,11 +111699,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -112888,10 +111743,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -112981,11 +111851,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -113013,10 +111883,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -113122,11 +112007,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -113166,10 +112051,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -113259,11 +112159,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -113291,10 +112191,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -113384,11 +112299,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -113428,10 +112343,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -113505,11 +112435,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -113537,10 +112467,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                interface-name
+                                            </td>
+                                            <td>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -113614,19 +112559,36 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns lag-interfaces</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns lag-interfaces</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>relationship object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
+                                </div>
+                            </div></div>
+                                        </div>
+                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -113641,10 +112603,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -113657,77 +112618,181 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Alternate name of VNF.</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship</strong></h3>
+                        Tags:
+                            <a href="#tag-Network">Network</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>delete an existing relationship</p>
+            
+                    </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                            </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                vnf-type
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                service-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-get" class="swagger--panel-operation-get panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">returns p-interfaces</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces</strong></h3>
+                        Tags:
+                            <a href="#tag-Network">Network</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>returns p-interfaces</p>
+            
+                    </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
@@ -113735,22 +112800,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 prov-status
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -113786,7 +112836,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/lag-interfaces">/lag-interfaces</a>
+                                                        <a class="json-schema-ref" href="#/definitions/p-interfaces">/p-interfaces</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -113814,17 +112864,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns lag-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}</strong></h3>
+                    <div class="operation-summary">returns p-interface</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns lag-interface</p>
+                        <p>returns p-interface</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -113841,10 +112891,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -113860,7 +112909,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -113873,70 +112922,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -113961,51 +112950,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -114032,7 +112976,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/lag-interface">/lag-interface</a>
+                                                        <a class="json-schema-ref" href="#/definitions/p-interface">/p-interface</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -114060,17 +113004,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing lag-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}</strong></h3>
+                    <div class="operation-summary">create or update an existing p-interface</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing lag-interface</p>
+                        <p>create or update an existing p-interface</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -114079,13 +113023,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>lag-interface object that needs to be created or updated</p>
+                                                <p><p>p-interface object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/lag-interface">/lag-interface</a>
+                                            <a class="json-schema-ref" href="#/definitions/p-interface">/p-interface</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -114104,10 +113048,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -114123,7 +113066,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -114165,17 +113108,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing lag-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}</strong></h3>
+                    <div class="operation-summary">delete an existing p-interface</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing lag-interface</p>
+                        <p>delete an existing p-interface</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -114197,10 +113140,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -114216,7 +113158,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -114274,11 +113216,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l-interfaces</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -114301,10 +113243,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -114320,7 +113261,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -114333,10 +113274,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Name of VNF.</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -114348,10 +113289,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name2
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Alternate name of VNF.</p>
+                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -114361,49 +113302,130 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/l-interfaces">/l-interfaces</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--get" class="swagger--panel-operation-get panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">returns l-interface</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                        Tags:
+                            <a href="#tag-Network">Network</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>returns l-interface</p>
+            
+                    </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                vnf-type
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                service-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Name given to the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
@@ -114411,7 +113433,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 prov-status
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -114423,302 +113445,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l-interfaces">/l-interfaces</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l-interface</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
-                                            </td>
-                                            <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
+                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -114827,11 +113557,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -114871,10 +113601,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -114890,7 +113619,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -114948,11 +113677,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -114980,10 +113709,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -114999,7 +113727,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115073,11 +113801,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -115100,10 +113828,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115119,7 +113846,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115164,70 +113891,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -115252,51 +113919,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 interface-id
@@ -115441,11 +114063,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -115485,10 +114107,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115504,7 +114125,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115578,11 +114199,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -115610,10 +114231,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115629,7 +114249,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115719,11 +114339,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -115763,10 +114383,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115782,7 +114401,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115856,11 +114475,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -115888,10 +114507,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115907,7 +114525,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -115981,11 +114599,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -116008,10 +114626,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116027,7 +114644,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116072,70 +114689,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -116160,51 +114717,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 interface-id
@@ -116349,11 +114861,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -116393,10 +114905,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116412,7 +114923,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116486,11 +114997,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -116518,10 +115029,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116537,7 +115047,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116627,11 +115137,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -116671,10 +115181,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116690,7 +115199,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116764,11 +115273,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -116796,10 +115305,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116815,7 +115323,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116889,11 +115397,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -116933,10 +115441,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -116952,7 +115459,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117010,11 +115517,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -117042,10 +115549,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117061,7 +115567,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117119,11 +115625,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns sriov-vfs</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -117146,10 +115652,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117165,7 +115670,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117194,70 +115699,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -117282,51 +115727,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 interface-id
@@ -117426,11 +115826,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -117453,10 +115853,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117472,7 +115871,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117517,70 +115916,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -117605,51 +115944,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 interface-id
@@ -117809,11 +116103,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -117853,10 +116147,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117872,7 +116165,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117946,11 +116239,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -117978,10 +116271,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -117997,7 +116289,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118087,11 +116379,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -118131,10 +116423,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118150,7 +116441,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118224,11 +116515,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -118256,10 +116547,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118275,7 +116565,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118349,11 +116639,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns vlans</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -118376,10 +116666,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118395,7 +116684,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118424,70 +116713,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -118512,51 +116741,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 interface-id
@@ -118656,11 +116840,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -118683,10 +116867,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118702,7 +116885,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -118747,70 +116930,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -118835,51 +116958,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 interface-id
@@ -119009,11 +117087,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -119053,10 +117131,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -119072,7 +117149,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -119146,11 +117223,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -119178,10 +117255,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -119197,7 +117273,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -119287,11 +117363,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -119314,10 +117390,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -119333,7 +117408,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -119394,70 +117469,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -119482,51 +117497,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
-                                            </td>
-                                            <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
                                         <tr>
                                             <td>
                                                 interface-id
@@ -119701,11 +117671,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -119745,10 +117715,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -119764,7 +117733,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -119854,11 +117823,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -119886,10 +117855,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -119905,7 +117873,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120011,11 +117979,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -120055,10 +118023,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120074,7 +118041,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120164,11 +118131,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -120196,10 +118163,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120215,7 +118181,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120305,11 +118271,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
                     <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -120332,10 +118298,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120351,7 +118316,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120412,10 +118377,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Name of VNF.</p>
+                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -120427,10 +118392,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name2
+                                                prov-status
                                             </td>
                                             <td>
-                                               <p>Alternate name of VNF.</p>
+                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -120442,10 +118407,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-type
+                                                interface-id
                                             </td>
                                             <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
+                                               <p>ID of interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -120457,10 +118422,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                service-id
+                                                macaddr
                                             </td>
                                             <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
+                                               <p>MAC address for the interface</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -120472,10 +118437,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                regional-resource-zone
+                                                network-name
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>Name of the network</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -120487,14 +118452,14 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                vlan-id-inner
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>Inner VLAN tag</p>
                                         </td>
                                             <td>query</td>
                                             <td>
-                                               <span class="json-property-type">string</span>
+                                               <span class="json-property-type">integer</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
@@ -120502,10 +118467,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                vpn-id
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>This indicates the customers VPN ID associated with this vlan</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -120517,14 +118482,14 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-id
+                                                vlan-id-inner
                                             </td>
                                             <td>
-                                               <p>ID of interface</p>
+                                               <p>Inner VLAN tag</p>
                                         </td>
                                             <td>query</td>
                                             <td>
-                                               <span class="json-property-type">string</span>
+                                               <span class="json-property-type">integer</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
@@ -120532,10 +118497,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-role
+                                                neutron-network-id
                                             </td>
                                             <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
+                                               <p>Neutron network id of the interface that address belongs to</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -120547,10 +118512,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-id
+                                                neutron-subnet-id
                                             </td>
                                             <td>
-                                               <p>ID of interface</p>
+                                               <p>Neutron id of subnet that address belongs to</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -120560,109 +118525,179 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                        Tags:
+                            <a href="#tag-Network">Network</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>create or update an existing l3-interface-ipv6-address-list</p>
+            
+                    </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>l3-interface-ipv6-address-list object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
+                                </div>
+                            </div></div>
+                                        </div>
+                            </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                macaddr
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>MAC address for the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                network-name
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>Name of the network</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vpn-id
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>This indicates the customers VPN ID associated with this vlan</p>
+                                               <p>Name given to the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
+                                                vlan-interface
                                             </td>
                                             <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
+                                               <p>String that identifies the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                neutron-subnet-id
+                                                l3-interface-ipv6-address
                                             </td>
                                             <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
+                                               <p>IP address</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -120674,29 +118709,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -120719,35 +118731,23 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv6-address-list</p>
+                        <p>delete an existing l3-interface-ipv6-address-list</p>
             
                     </section>
                        <section class="sw-request-body">
                                 
                                     <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
                         </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l3-interface-ipv6-address-list object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
-                                </div>
-                            </div></div>
-                                        </div>
                             </section>
                         <section class="sw-request-params">
                             <table class="table">
@@ -120763,10 +118763,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120782,7 +118781,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120841,6 +118840,22 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                        <tr>
+                                            <td>
+                                                resource-version
+                                            </td>
+                                            <td>
+                                               <p>resource-version for concurrency</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -120872,23 +118887,35 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv6-address-list</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
                        <section class="sw-request-body">
                                 
                                     <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
                         </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>relationship object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
+                                </div>
+                            </div></div>
+                                        </div>
                             </section>
                         <section class="sw-request-params">
                             <table class="table">
@@ -120904,10 +118931,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120923,7 +118949,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -120982,22 +119008,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -121029,35 +119039,23 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
+                        <p>delete an existing relationship</p>
             
                     </section>
                        <section class="sw-request-body">
                                 
                                     <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
                         </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
                             </section>
                         <section class="sw-request-params">
                             <table class="table">
@@ -121073,10 +119071,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121092,7 +119089,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121182,23 +119179,35 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
                        <section class="sw-request-body">
                                 
                                     <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
                         </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>relationship object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
+                                </div>
+                            </div></div>
+                                        </div>
                             </section>
                         <section class="sw-request-params">
                             <table class="table">
@@ -121214,10 +119223,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121233,7 +119241,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121276,22 +119284,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -121323,35 +119315,23 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
+                        <p>delete an existing relationship</p>
             
                     </section>
                        <section class="sw-request-body">
                                 
                                     <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
                         </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
                             </section>
                         <section class="sw-request-params">
                             <table class="table">
@@ -121367,10 +119347,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121386,7 +119365,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121460,23 +119439,35 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
                        <section class="sw-request-body">
                                 
                                     <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
                         </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>relationship object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
+                                </div>
+                            </div></div>
+                                        </div>
                             </section>
                         <section class="sw-request-params">
                             <table class="table">
@@ -121492,10 +119483,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121511,7 +119501,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 interface-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121522,12 +119512,72 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/relationship-list/relationship</strong></h3>
+                        Tags:
+                            <a href="#tag-Network">Network</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>delete an existing relationship</p>
+            
+                    </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                            </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121540,10 +119590,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-interface
+                                                interface-name
                                             </td>
                                             <td>
-                                               <p>String that identifies the interface</p>
+                                               <p>Name that identifies the physical interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121585,11 +119635,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -121629,26 +119679,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121690,11 +119723,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpls-pes-vpls-pe--equipment-name--relationship-list-relationship-"></span>
+            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -121722,26 +119755,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
+                                                equipment-name
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121783,17 +119799,81 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--licenses-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--licenses-get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpn-bindings-"></span>
+            <div id="operation--network-vpn-bindings-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns licenses</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/licenses</strong></h3>
+                    <div class="operation-summary">returns vpn-bindings</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpn-bindings</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns licenses</p>
+                        <p>returns vpn-bindings</p>
+            
+                    </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/vpn-bindings">/vpn-bindings</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--network-vpn-bindings-vpn-binding--vpn-id--"></span>
+            <div id="operation--network-vpn-bindings-vpn-binding--vpn-id--get" class="swagger--panel-operation-get panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">returns vpn-binding</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpn-bindings/vpn-binding/{vpn-id}</strong></h3>
+                        Tags:
+                            <a href="#tag-Network">Network</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>returns vpn-binding</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -121810,10 +119890,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                vpn-id
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                               <p>VPN ID, globally unique within A&AI</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -121826,70 +119906,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
+                                                vpn-name
                                             </td>
                                             <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
+                                               <p>VPN Name</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -121901,10 +119921,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                global-route-target
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
+                                               <p>Number used to identify a VPN, globally unique in the network</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -121916,10 +119936,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                heat-stack-id
+                                                vpn-type
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>Type of the vpn, should be taken from enumerated/valid values</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -121955,7 +119975,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/licenses">/licenses</a>
+                                                        <a class="json-schema-ref" href="#/definitions/vpn-binding">/vpn-binding</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -121983,19 +120003,36 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--get" class="swagger--panel-operation-get panel">
+        <span id="path--network-vpn-bindings-vpn-binding--vpn-id--"></span>
+            <div id="operation--network-vpn-bindings-vpn-binding--vpn-id--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns license</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}</strong></h3>
+                    <div class="operation-summary">create or update an existing vpn-binding</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpn-bindings/vpn-binding/{vpn-id}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns license</p>
+                        <p>create or update an existing vpn-binding</p>
             
                     </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>vpn-binding object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/vpn-binding">/vpn-binding</a>
+                                </div>
+                            </div></div>
+                                        </div>
+                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -122010,26 +120047,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
+                                                vpn-id
                                             </td>
                                             <td>
-                                               <p>Unique ID for the license group the resource belongs to, should be uuid.</p>
+                                               <p>VPN ID, globally unique within A&AI</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122040,12 +120061,73 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--network-vpn-bindings-vpn-binding--vpn-id--"></span>
+            <div id="operation--network-vpn-bindings-vpn-binding--vpn-id--delete" class="swagger--panel-operation-delete panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">delete an existing vpn-binding</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpn-bindings/vpn-binding/{vpn-id}</strong></h3>
+                        Tags:
+                            <a href="#tag-Network">Network</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>delete an existing vpn-binding</p>
+            
+                    </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                            </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                resource-uuid
+                                                vpn-id
                                             </td>
                                             <td>
-                                               <p>Unique ID of a license resource.</p>
+                                               <p>VPN ID, globally unique within A&AI</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122058,100 +120140,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vnf-name
-                                            </td>
-                                            <td>
-                                               <p>Name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-name2
-                                            </td>
-                                            <td>
-                                               <p>Alternate name of VNF.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vnf-type
-                                            </td>
-                                            <td>
-                                               <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                service-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                regional-resource-zone
-                                            </td>
-                                            <td>
-                                               <p>Regional way of organizing pservers, source of truth should define values</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                heat-stack-id
+                                                resource-version
                                             </td>
                                             <td>
-                                               <p>Heat stack id corresponding to this instance, managed by MSO</p>
+                                               <p>resource-version for concurrency</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -122159,6 +120151,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -122170,29 +120163,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/license">/license</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -122215,17 +120185,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--put" class="swagger--panel-operation-put panel">
+        <span id="path--network-vpn-bindings-vpn-binding--vpn-id--relationship-list-relationship-"></span>
+            <div id="operation--network-vpn-bindings-vpn-binding--vpn-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing license</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpn-bindings/vpn-binding/{vpn-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing license</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -122234,13 +120204,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>license object that needs to be created or updated</p>
+                                                <p><p>relationship object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/license">/license</a>
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -122259,42 +120229,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID for the license group the resource belongs to, should be uuid.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-uuid
+                                                vpn-id
                                             </td>
                                             <td>
-                                               <p>Unique ID of a license resource.</p>
+                                               <p>VPN ID, globally unique within A&AI</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122336,17 +120274,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-vpn-bindings-vpn-binding--vpn-id--relationship-list-relationship-"></span>
+            <div id="operation--network-vpn-bindings-vpn-binding--vpn-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing license</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}</strong></h3>
+                    <div class="operation-summary">delete an existing relationship</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpn-bindings/vpn-binding/{vpn-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing license</p>
+                        <p>delete an existing relationship</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -122368,10 +120306,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                vpn-id
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                               <p>VPN ID, globally unique within A&AI</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122382,12 +120320,132 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--network-zones-"></span>
+            <div id="operation--network-zones-get" class="swagger--panel-operation-get panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">returns zones</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/zones</strong></h3>
+                        Tags:
+                            <a href="#tag-Network">Network</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>returns zones</p>
+            
+                    </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/zones">/zones</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--network-zones-zone--zone-id--"></span>
+            <div id="operation--network-zones-zone--zone-id--get" class="swagger--panel-operation-get panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">returns zone</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/zones/zone/{zone-id}</strong></h3>
+                        Tags:
+                            <a href="#tag-Network">Network</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>returns zone</p>
+            
+                    </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                group-uuid
+                                                zone-id
                                             </td>
                                             <td>
-                                               <p>Unique ID for the license group the resource belongs to, should be uuid.</p>
+                                               <p>Code assigned by AIC to the zone</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122400,26 +120458,25 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                resource-uuid
+                                                design-type
                                             </td>
                                             <td>
-                                               <p>Unique ID of a license resource.</p>
+                                               <p>Design of zone [Medium/Large?]</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                resource-version
+                                                zone-context
                                             </td>
                                             <td>
-                                               <p>resource-version for concurrency</p>
+                                               <p>Context of zone [production/test]</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -122427,7 +120484,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -122439,6 +120495,29 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/zone">/zone</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -122461,17 +120540,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-zones-zone--zone-id--"></span>
+            <div id="operation--network-zones-zone--zone-id--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">create or update an existing zone</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/zones/zone/{zone-id}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
+                        <p>create or update an existing zone</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -122480,13 +120559,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
+                                                <p><p>zone object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
+                                            <a class="json-schema-ref" href="#/definitions/zone">/zone</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -122505,42 +120584,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
-                                            </td>
-                                            <td>
-                                               <p>Unique ID for the license group the resource belongs to, should be uuid.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-uuid
+                                                zone-id
                                             </td>
                                             <td>
-                                               <p>Unique ID of a license resource.</p>
+                                               <p>Code assigned by AIC to the zone</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122582,17 +120629,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--licenses-license--group-uuid---resource-uuid--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-zones-zone--zone-id--"></span>
+            <div id="operation--network-zones-zone--zone-id--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">delete an existing zone</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/zones/zone/{zone-id}</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
+                        <p>delete an existing zone</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -122614,26 +120661,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
-                                            </td>
-                                            <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                group-uuid
+                                                zone-id
                                             </td>
                                             <td>
-                                               <p>Unique ID for the license group the resource belongs to, should be uuid.</p>
+                                               <p>Code assigned by AIC to the zone</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122646,12 +120677,12 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                resource-uuid
+                                                resource-version
                                             </td>
                                             <td>
-                                               <p>Unique ID of a license resource.</p>
+                                               <p>resource-version for concurrency</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
@@ -122691,11 +120722,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--network-zones-zone--zone-id--relationship-list-relationship-"></span>
+            <div id="operation--network-zones-zone--zone-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpes/vpe/{vnf-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/zones/zone/{zone-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -122735,10 +120766,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                zone-id
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                               <p>Code assigned by AIC to the zone</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122780,11 +120811,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpes-vpe--vnf-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpes-vpe--vnf-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--network-zones-zone--zone-id--relationship-list-relationship-"></span>
+            <div id="operation--network-zones-zone--zone-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpes/vpe/{vnf-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/zones/zone/{zone-id}/relationship-list/relationship</strong></h3>
                         Tags:
                             <a href="#tag-Network">Network</a>
                 </div>
@@ -122812,10 +120843,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                vnf-id
+                                                zone-id
                                             </td>
                                             <td>
-                                               <p>Unique id of VNF.  This is unique across the graph.</p>
+                                               <p>Code assigned by AIC to the zone</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122857,17 +120888,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-"></span>
-            <div id="operation--network-vpls-pes-get" class="swagger--panel-operation-get panel">
+        <span id="path--service-design-and-creation-models-"></span>
+            <div id="operation--service-design-and-creation-models-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns vpls-pes</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes</strong></h3>
+                    <div class="operation-summary">returns models</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns vpls-pes</p>
+                        <p>returns models</p>
             
                     </section>
 
@@ -122893,7 +120924,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vpls-pes">/vpls-pes</a>
+                                                        <a class="json-schema-ref" href="#/definitions/models">/models</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -122921,17 +120952,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--get" class="swagger--panel-operation-get panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns vpls-pe</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}</strong></h3>
+                    <div class="operation-summary">returns model</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns vpls-pe</p>
+                        <p>returns model</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -122948,9 +120979,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -122963,10 +120995,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                model-type
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
+                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -123002,7 +121034,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vpls-pe">/vpls-pe</a>
+                                                        <a class="json-schema-ref" href="#/definitions/model">/model</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -123030,17 +121062,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--put" class="swagger--panel-operation-put panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing vpls-pe</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}</strong></h3>
+                    <div class="operation-summary">create or update an existing model</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing vpls-pe</p>
+                        <p>create or update an existing model</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -123049,13 +121081,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>vpls-pe object that needs to be created or updated</p>
+                                                <p><p>model object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/vpls-pe">/vpls-pe</a>
+                                            <a class="json-schema-ref" href="#/definitions/model">/model</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -123074,9 +121106,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123118,17 +121151,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing vpls-pe</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}</strong></h3>
+                    <div class="operation-summary">delete an existing model</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing vpls-pe</p>
+                        <p>delete an existing model</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -123150,9 +121183,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123210,17 +121244,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-get" class="swagger--panel-operation-get panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns lag-interfaces</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces</strong></h3>
+                    <div class="operation-summary">returns model-vers</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns lag-interfaces</p>
+                        <p>returns model-vers</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -123237,9 +121271,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123252,10 +121287,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                model-type
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
+                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -123291,7 +121326,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/lag-interfaces">/lag-interfaces</a>
+                                                        <a class="json-schema-ref" href="#/definitions/model-vers">/model-vers</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -123319,17 +121354,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--get" class="swagger--panel-operation-get panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns lag-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}</strong></h3>
+                    <div class="operation-summary">returns model-ver</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns lag-interface</p>
+                        <p>returns model-ver</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -123346,9 +121381,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123361,10 +121397,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123377,10 +121413,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                model-type
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
+                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -123392,10 +121428,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-id
+                                                model-name
                                             </td>
                                             <td>
-                                               <p>ID of interface</p>
+                                               <p>Name of the model, which can change from version to version.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -123407,10 +121443,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-role
+                                                model-version
                                             </td>
                                             <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
+                                               <p>Version</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -123446,7 +121482,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/lag-interface">/lag-interface</a>
+                                                        <a class="json-schema-ref" href="#/definitions/model-ver">/model-ver</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -123474,17 +121510,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--put" class="swagger--panel-operation-put panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing lag-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}</strong></h3>
+                    <div class="operation-summary">create or update an existing model-ver</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing lag-interface</p>
+                        <p>create or update an existing model-ver</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -123493,13 +121529,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>lag-interface object that needs to be created or updated</p>
+                                                <p><p>model-ver object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/lag-interface">/lag-interface</a>
+                                            <a class="json-schema-ref" href="#/definitions/model-ver">/model-ver</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -123518,9 +121554,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123533,10 +121570,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123578,17 +121615,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing lag-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}</strong></h3>
+                    <div class="operation-summary">delete an existing model-ver</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing lag-interface</p>
+                        <p>delete an existing model-ver</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -123610,9 +121647,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123625,10 +121663,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123686,17 +121724,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-get" class="swagger--panel-operation-get panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--metadata-"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--metadata-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns l-interfaces</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces</strong></h3>
+                    <div class="operation-summary">returns metadata</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/metadata</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns l-interfaces</p>
+                        <p>returns metadata</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -123713,9 +121751,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123728,10 +121767,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123744,10 +121783,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                model-type
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
+                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -123759,10 +121798,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-id
+                                                model-name
                                             </td>
                                             <td>
-                                               <p>ID of interface</p>
+                                               <p>Name of the model, which can change from version to version.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -123774,10 +121813,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-role
+                                                model-version
                                             </td>
                                             <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
+                                               <p>Version</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -123813,7 +121852,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l-interfaces">/l-interfaces</a>
+                                                        <a class="json-schema-ref" href="#/definitions/metadata">/metadata</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -123841,17 +121880,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--get" class="swagger--panel-operation-get panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--metadata-metadatum--metaname--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--metadata-metadatum--metaname--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                    <div class="operation-summary">returns metadatum</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/metadata/metadatum/{metaname}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns l-interface</p>
+                        <p>returns metadatum</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -123868,9 +121907,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123883,10 +121923,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123899,10 +121939,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                metaname
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -123915,10 +121954,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
+                                                model-type
                                             </td>
                                             <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
+                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -123930,10 +121969,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-id
+                                                model-name
                                             </td>
                                             <td>
-                                               <p>ID of interface</p>
+                                               <p>Name of the model, which can change from version to version.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -123945,10 +121984,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-role
+                                                model-version
                                             </td>
                                             <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
+                                               <p>Version</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -123958,49 +121997,147 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                             <td>
                                             </td>
                                         </tr>
+                                </tbody>
+                            </table>
+                        </section>
+
+                        <section class="sw-responses">
+                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                    </p>
+                    
+                            <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/metadatum">/metadatum</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
+                                <dt class="sw-response-default">
+                                        default 
+                                    
+                                    </dt>
+                                    <dd class="sw-response-default">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+                                                
+                                                <div class="col-md-6 sw-response-model">
+                                            </div>
+                                            
+                                            </div>                </dd>
+                            </dl>
+                        </section>
+                </div>
+            </div>    
+        
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--metadata-metadatum--metaname--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--metadata-metadatum--metaname--put" class="swagger--panel-operation-put panel">
+                <div class="panel-heading">
+                    <div class="operation-summary">create or update an existing metadatum</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/metadata/metadatum/{metaname}</strong></h3>
+                        Tags:
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
+                </div>
+                <div class="panel-body">
+                    <section class="sw-operation-description">
+                        <p>create or update an existing metadatum</p>
+            
+                    </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>metadatum object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/metadatum">/metadatum</a>
+                                </div>
+                            </div></div>
+                                        </div>
+                            </section>
+                        <section class="sw-request-params">
+                            <table class="table">
+                                <thead>
+                                <tr>
+                                    <th class="sw-param-name"></th>
+                                    <th class="sw-param-description"></th>
+                                    <th class="sw-param-type"></th>
+                                    <th class="sw-param-data-type"></th>
+                                    <th class="sw-param-annotation"></th>
+                                </tr>
+                                </thead>
+                                <tbody>
                                         <tr>
                                             <td>
-                                                interface-id
+                                                model-invariant-id
                                             </td>
                                             <td>
-                                               <p>ID of interface</p>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                macaddr
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>MAC address for the interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                network-name
+                                                metaname
                                             </td>
                                             <td>
-                                               <p>Name of the network</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -124012,29 +122149,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l-interface">/l-interface</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -124057,35 +122171,23 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--put" class="swagger--panel-operation-put panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--metadata-metadatum--metaname--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--metadata-metadatum--metaname--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                    <div class="operation-summary">delete an existing metadatum</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/metadata/metadatum/{metaname}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing l-interface</p>
+                        <p>delete an existing metadatum</p>
             
                     </section>
                        <section class="sw-request-body">
                                 
                                     <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
                         </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l-interface object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l-interface">/l-interface</a>
-                                </div>
-                            </div></div>
-                                        </div>
                             </section>
                         <section class="sw-request-params">
                             <table class="table">
@@ -124101,9 +122203,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -124116,10 +122219,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -124132,10 +122235,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                metaname
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -124146,6 +122248,22 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                        <tr>
+                                            <td>
+                                                resource-version
+                                            </td>
+                                            <td>
+                                               <p>resource-version for concurrency</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -124177,24 +122295,19 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
+                    <div class="operation-summary">returns model-elements</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing l-interface</p>
+                        <p>returns model-elements</p>
             
                     </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -124209,9 +122322,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -124224,10 +122338,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -124240,26 +122354,40 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-type
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                resource-version
+                                                model-name
                                             </td>
                                             <td>
-                                               <p>resource-version for concurrency</p>
+                                               <p>Name of the model, which can change from version to version.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                model-version
+                                            </td>
+                                            <td>
+                                               <p>Version</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -124267,7 +122395,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -124279,6 +122406,29 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/model-elements">/model-elements</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -124301,17 +122451,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <div class="operation-summary">returns model-element</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv4-address-list</p>
+                        <p>returns model-element</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -124328,25 +122478,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
+                                                model-invariant-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -124359,10 +122494,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -124375,10 +122510,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv4-address
+                                                model-element-uuid
                                             </td>
                                             <td>
-                                               <p>IP address</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -124391,85 +122525,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
+                                                model-type
                                             </td>
                                             <td>
-                                               <p>Name of the network</p>
+                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -124481,25 +122540,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
+                                                model-name
                                             </td>
                                             <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
+                                               <p>Name of the model, which can change from version to version.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -124511,10 +122555,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                neutron-subnet-id
+                                                model-version
                                             </td>
                                             <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
+                                               <p>Version</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -124550,7 +122594,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
+                                                        <a class="json-schema-ref" href="#/definitions/model-element">/model-element</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -124578,17 +122622,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <div class="operation-summary">create or update an existing model-element</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv4-address-list</p>
+                        <p>create or update an existing model-element</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -124597,13 +122641,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>l3-interface-ipv4-address-list object that needs to be created or updated</p>
+                                                <p><p>model-element object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
+                                            <a class="json-schema-ref" href="#/definitions/model-element">/model-element</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -124622,25 +122666,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
+                                                model-invariant-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -124653,10 +122682,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -124669,10 +122698,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv4-address
+                                                model-element-uuid
                                             </td>
                                             <td>
-                                               <p>IP address</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -124714,17 +122742,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
+                    <div class="operation-summary">delete an existing model-element</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv4-address-list</p>
+                        <p>delete an existing model-element</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -124746,25 +122774,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
+                                                model-invariant-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -124777,10 +122790,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -124793,10 +122806,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv4-address
+                                                model-element-uuid
                                             </td>
                                             <td>
-                                               <p>IP address</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -124854,36 +122866,19 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">returns model-constraints</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
+                        <p>returns model-constraints</p>
             
                     </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -124898,41 +122893,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
+                                                model-invariant-id
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -124945,10 +122909,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv4-address
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>IP address</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -124959,70 +122923,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-element-uuid
                                             </td>
                                             <td>
                                         </td>
@@ -125037,50 +122940,47 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-type
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-name
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
+                                               <p>Name of the model, which can change from version to version.</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv4-address
+                                                model-version
                                             </td>
                                             <td>
-                                               <p>IP address</p>
+                                               <p>Version</p>
                                         </td>
-                                            <td>path</td>
+                                            <td>query</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -125092,6 +122992,29 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/model-constraints">/model-constraints</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -125114,17 +123037,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <div class="operation-summary">returns model-constraint</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv6-address-list</p>
+                        <p>returns model-constraint</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -125141,9 +123064,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125156,10 +123080,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125172,10 +123096,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-element-uuid
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125188,10 +123111,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv6-address
+                                                model-constraint-uuid
                                             </td>
                                             <td>
-                                               <p>IP address</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125204,85 +123126,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
+                                                model-type
                                             </td>
                                             <td>
-                                               <p>Name of the network</p>
+                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -125294,25 +123141,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
+                                                model-name
                                             </td>
                                             <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
+                                               <p>Name of the model, which can change from version to version.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -125324,10 +123156,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                neutron-subnet-id
+                                                model-version
                                             </td>
                                             <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
+                                               <p>Version</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -125363,7 +123195,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
+                                                        <a class="json-schema-ref" href="#/definitions/model-constraint">/model-constraint</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -125391,17 +123223,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <div class="operation-summary">create or update an existing model-constraint</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv6-address-list</p>
+                        <p>create or update an existing model-constraint</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -125410,13 +123242,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>l3-interface-ipv6-address-list object that needs to be created or updated</p>
+                                                <p><p>model-constraint object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
+                                            <a class="json-schema-ref" href="#/definitions/model-constraint">/model-constraint</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -125435,9 +123267,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125450,10 +123283,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125466,10 +123299,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-element-uuid
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125482,10 +123314,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv6-address
+                                                model-constraint-uuid
                                             </td>
                                             <td>
-                                               <p>IP address</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125527,17 +123358,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
+                    <div class="operation-summary">delete an existing model-constraint</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv6-address-list</p>
+                        <p>delete an existing model-constraint</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -125559,9 +123390,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125574,10 +123406,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125590,10 +123422,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-element-uuid
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125606,10 +123437,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv6-address
+                                                model-constraint-uuid
                                             </td>
                                             <td>
-                                               <p>IP address</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125667,36 +123497,19 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">returns constrained-element-sets</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
+                        <p>returns constrained-element-sets</p>
             
                     </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -125711,9 +123524,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125726,10 +123540,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125742,10 +123556,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-element-uuid
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125758,10 +123571,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv6-address
+                                                model-constraint-uuid
                                             </td>
                                             <td>
-                                               <p>IP address</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125772,6 +123584,51 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                        <tr>
+                                            <td>
+                                                model-type
+                                            </td>
+                                            <td>
+                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                model-name
+                                            </td>
+                                            <td>
+                                               <p>Name of the model, which can change from version to version.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                model-version
+                                            </td>
+                                            <td>
+                                               <p>Version</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -125781,6 +123638,29 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/constrained-element-sets">/constrained-element-sets</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -125803,24 +123683,19 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">returns constrained-element-set</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
+                        <p>returns constrained-element-set</p>
             
                     </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -125835,9 +123710,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125850,10 +123726,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125866,10 +123742,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-element-uuid
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125882,10 +123757,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                l3-interface-ipv6-address
+                                                model-constraint-uuid
                                             </td>
                                             <td>
-                                               <p>IP address</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125896,6 +123770,66 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                        <tr>
+                                            <td>
+                                                constrained-element-set-uuid
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                model-type
+                                            </td>
+                                            <td>
+                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                model-name
+                                            </td>
+                                            <td>
+                                               <p>Name of the model, which can change from version to version.</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                model-version
+                                            </td>
+                                            <td>
+                                               <p>Version</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                            </td>
+                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -125905,6 +123839,29 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     </p>
                     
                             <dl>
+                                    <dt class="sw-response-200">
+                                        200 OK
+                                    
+                                    </dt>
+                                    <dd class="sw-response-200">
+                                            <div class="row">
+                                                <div class="col-md-12">
+                                                    <p>successful operation</p>
+                                            
+                                                </div>
+                                            </div>
+                                            <div class="row">
+
+                                                <div class="col-md-6 sw-response-model">
+                                                <div  class="panel panel-definition">
+
+                                                    <div class="panel-body">
+                                                        <a class="json-schema-ref" href="#/definitions/constrained-element-set">/constrained-element-set</a>
+                                                    </div>
+                                                </div>
+                                                </div>
+
+                                            </div>                </dd>
                                 <dt class="sw-response-default">
                                         default 
                                     
@@ -125927,17 +123884,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">create or update an existing constrained-element-set</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
+                        <p>create or update an existing constrained-element-set</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -125946,13 +123903,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
+                                                <p><p>constrained-element-set object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
+                                            <a class="json-schema-ref" href="#/definitions/constrained-element-set">/constrained-element-set</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -125971,9 +123928,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -125986,10 +123944,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126002,10 +123960,39 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-element-uuid
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                model-constraint-uuid
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                constrained-element-set-uuid
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126047,17 +124034,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
+                    <div class="operation-summary">delete an existing constrained-element-set</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
+                        <p>delete an existing constrained-element-set</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -126079,9 +124066,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126094,10 +124082,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126110,10 +124098,39 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-element-uuid
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                model-constraint-uuid
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                constrained-element-set-uuid
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126124,6 +124141,22 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                     <span class="json-property-required"></span>
                                             </td>
                                         </tr>
+                                        <tr>
+                                            <td>
+                                                resource-version
+                                            </td>
+                                            <td>
+                                               <p>resource-version for concurrency</p>
+                                        </td>
+                                            <td>query</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
                                 </tbody>
                             </table>
                         </section>
@@ -126155,17 +124188,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-get" class="swagger--panel-operation-get panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns sriov-vfs</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs</strong></h3>
+                    <div class="operation-summary">returns element-choice-sets</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}/element-choice-sets</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns sriov-vfs</p>
+                        <p>returns element-choice-sets</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -126182,9 +124215,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126197,10 +124231,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126213,10 +124247,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-element-uuid
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126229,55 +124262,40 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
+                                                model-constraint-uuid
                                             </td>
                                             <td>
-                                               <p>ID of interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-role
+                                                constrained-element-set-uuid
                                             </td>
                                             <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-id
+                                                model-type
                                             </td>
                                             <td>
-                                               <p>ID of interface</p>
+                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -126289,10 +124307,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                macaddr
+                                                model-name
                                             </td>
                                             <td>
-                                               <p>MAC address for the interface</p>
+                                               <p>Name of the model, which can change from version to version.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -126304,10 +124322,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                network-name
+                                                model-version
                                             </td>
                                             <td>
-                                               <p>Name of the network</p>
+                                               <p>Version</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -126343,7 +124361,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/sriov-vfs">/sriov-vfs</a>
+                                                        <a class="json-schema-ref" href="#/definitions/element-choice-sets">/element-choice-sets</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -126371,17 +124389,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--get" class="swagger--panel-operation-get panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--get" class="swagger--panel-operation-get panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
+                    <div class="operation-summary">returns element-choice-set</div>
+                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}/element-choice-sets/element-choice-set/{element-choice-set-uuid}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns sriov-vf</p>
+                        <p>returns element-choice-set</p>
             
                     </section>
                         <section class="sw-request-params">
@@ -126398,9 +124416,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126413,10 +124432,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126429,10 +124448,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-element-uuid
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126445,10 +124463,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                pci-id
+                                                model-constraint-uuid
                                             </td>
                                             <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126461,100 +124478,40 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
+                                                constrained-element-set-uuid
                                             </td>
                                             <td>
-                                               <p>MAC address for the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                network-name
+                                                element-choice-set-uuid
                                             </td>
                                             <td>
-                                               <p>Name of the network</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                vf-vlan-filter
+                                                model-type
                                             </td>
                                             <td>
-                                               <p>This metadata provides option to specify list of VLAN filters applied on VF to pass the traffic to VM.</p>
+                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -126566,10 +124523,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vf-mac-filter
+                                                model-name
                                             </td>
                                             <td>
-                                               <p>When MAC filters are specified, VF-agent service configures VFs to do MAC level filtering before the traffic is passed to VM.</p>
+                                               <p>Name of the model, which can change from version to version.</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -126581,25 +124538,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                vf-vlan-strip
-                                            </td>
-                                            <td>
-                                               <p>When this field is set to true, VF will configured to strip the outer TAG before the traffic is passed to VM.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">boolean</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
+                                                model-version
                                             </td>
                                             <td>
-                                               <p>Neutron network id of the interface</p>
+                                               <p>Version</p>
                                         </td>
                                             <td>query</td>
                                             <td>
@@ -126635,7 +124577,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div  class="panel panel-definition">
 
                                                     <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/sriov-vf">/sriov-vf</a>
+                                                        <a class="json-schema-ref" href="#/definitions/element-choice-set">/element-choice-set</a>
                                                     </div>
                                                 </div>
                                                 </div>
@@ -126663,17 +124605,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--put" class="swagger--panel-operation-put panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
+                    <div class="operation-summary">create or update an existing element-choice-set</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}/element-choice-sets/element-choice-set/{element-choice-set-uuid}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>create or update an existing sriov-vf</p>
+                        <p>create or update an existing element-choice-set</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -126682,13 +124624,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </p>
                                                <div class="row">
                                             <div class="col-md-6">
-                                                <p><p>sriov-vf object that needs to be created or updated</p>
+                                                <p><p>element-choice-set object that needs to be created or updated</p>
                         </p>
                                             </div>
                                             <div class="col-md-6 sw-request-model">
                             <div  class="panel panel-definition">
                                 <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/sriov-vf">/sriov-vf</a>
+                                            <a class="json-schema-ref" href="#/definitions/element-choice-set">/element-choice-set</a>
                                 </div>
                             </div></div>
                                         </div>
@@ -126707,9 +124649,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126722,10 +124665,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126738,10 +124681,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-element-uuid
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126754,10 +124696,39 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                pci-id
+                                                model-constraint-uuid
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                constrained-element-set-uuid
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                element-choice-set-uuid
                                             </td>
                                             <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126799,17 +124770,17 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--delete" class="swagger--panel-operation-delete panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">delete an existing sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
+                    <div class="operation-summary">delete an existing element-choice-set</div>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}/element-choice-sets/element-choice-set/{element-choice-set-uuid}</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>delete an existing sriov-vf</p>
+                        <p>delete an existing element-choice-set</p>
             
                     </section>
                        <section class="sw-request-body">
@@ -126831,9 +124802,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126846,10 +124818,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126862,10 +124834,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-element-uuid
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126878,10 +124849,39 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                pci-id
+                                                model-constraint-uuid
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                constrained-element-set-uuid
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                element-choice-set-uuid
                                             </td>
                                             <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126939,13 +124939,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--relationship-list-relationship-"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
                     <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}/element-choice-sets/element-choice-set/{element-choice-set-uuid}/relationship-list/relationship</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
@@ -126983,9 +124983,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -126998,10 +124999,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -127014,10 +125015,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-element-uuid
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -127030,10 +125030,39 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                pci-id
+                                                model-constraint-uuid
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                constrained-element-set-uuid
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                element-choice-set-uuid
                                             </td>
                                             <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -127075,13 +125104,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--relationship-list-relationship-"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
                 <div class="panel-heading">
                     <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
+                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}/element-choice-sets/element-choice-set/{element-choice-set-uuid}/relationship-list/relationship</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
@@ -127107,9 +125136,26 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
+                                            </td>
+                                            <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
+                                        </tr>
+                                        <tr>
                                             <td>
+                                                model-version-id
+                                            </td>
+                                            <td>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -127122,10 +125168,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-element-uuid
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -127138,10 +125183,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-constraint-uuid
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -127154,10 +125198,24 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                pci-id
+                                                constrained-element-set-uuid
+                                            </td>
+                                            <td>
+                                        </td>
+                                            <td>path</td>
+                                            <td>
+                                               <span class="json-property-type">string</span>
+                                        <span class="json-property-range" title="Value limits"></span>
+                                            </td>
+                                            <td>
+                                                    <span class="json-property-required"></span>
+                                            </td>
+                                        </tr>
+                                        <tr>
+                                            <td>
+                                                element-choice-set-uuid
                                             </td>
                                             <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -127199,19 +125257,36 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                 </div>
             </div>    
         
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-get" class="swagger--panel-operation-get panel">
+        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--relationship-list-relationship-"></span>
+            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
                 <div class="panel-heading">
-                    <div class="operation-summary">returns vlans</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans</strong></h3>
+                    <div class="operation-summary">see node definition for valid relationships</div>
+                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}/relationship-list/relationship</strong></h3>
                         Tags:
-                            <a href="#tag-Network">Network</a>
+                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
                 </div>
                 <div class="panel-body">
                     <section class="sw-operation-description">
-                        <p>returns vlans</p>
+                        <p>see node definition for valid relationships</p>
             
                     </section>
+                       <section class="sw-request-body">
+                                
+                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
+                        </p>
+                                               <div class="row">
+                                            <div class="col-md-6">
+                                                <p><p>relationship object that needs to be created or updated</p>
+                        </p>
+                                            </div>
+                                            <div class="col-md-6 sw-request-model">
+                            <div  class="panel panel-definition">
+                                <div class="panel-body">
+                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
+                                </div>
+                            </div></div>
+                                        </div>
+                            </section>
                         <section class="sw-request-params">
                             <table class="table">
                                 <thead>
@@ -127226,9 +125301,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 <tbody>
                                         <tr>
                                             <td>
-                                                equipment-name
+                                                model-invariant-id
                                             </td>
                                             <td>
+                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -127241,10 +125317,10 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-version-id
                                             </td>
                                             <td>
-                                               <p>Name that identifies the link aggregate interface</p>
+                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -127257,10 +125333,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                interface-name
+                                                model-element-uuid
                                             </td>
                                             <td>
-                                               <p>Name given to the interface</p>
                                         </td>
                                             <td>path</td>
                                             <td>
@@ -127273,15607 +125348,32 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                         </tr>
                                         <tr>
                                             <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
+                                                model-constraint-uuid
                                             </td>
                                             <td>
-                                               <p>MAC address for the interface</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                         <tr>
                                             <td>
-                                                network-name
+                                                constrained-element-set-uuid
                                             </td>
                                             <td>
-                                               <p>Name of the network</p>
                                         </td>
-                                            <td>query</td>
+                                            <td>path</td>
                                             <td>
                                                <span class="json-property-type">string</span>
                                         <span class="json-property-range" title="Value limits"></span>
                                             </td>
                                             <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vlans">/vlans</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns vlan</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vpn-id
-                                            </td>
-                                            <td>
-                                               <p>This indicates the customers VPN ID associated with this vlan</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vlan">/vlan</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing vlan</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>vlan object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/vlan">/vlan</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing vlan</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vpn-id
-                                            </td>
-                                            <td>
-                                               <p>This indicates the customers VPN ID associated with this vlan</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-subnet-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l3-interface-ipv4-address-list object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-role
-                                            </td>
-                                            <td>
-                                               <p>Role assigned to this Interface, should use values as defined in ECOMP Yang models.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vpn-id
-                                            </td>
-                                            <td>
-                                               <p>This indicates the customers VPN ID associated with this vlan</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-subnet-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l3-interface-ipv6-address-list object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--lag-interfaces-lag-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the link aggregate interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns p-interfaces</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns p-interfaces</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/p-interfaces">/p-interfaces</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns p-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns p-interface</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/p-interface">/p-interface</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing p-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing p-interface</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>p-interface object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/p-interface">/p-interface</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing p-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing p-interface</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l-interfaces</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l-interfaces</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l-interfaces">/l-interfaces</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l-interface</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l-interface">/l-interface</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing l-interface</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l-interface object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l-interface">/l-interface</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l-interface</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing l-interface</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-subnet-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l3-interface-ipv4-address-list object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-subnet-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l3-interface-ipv6-address-list object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns sriov-vfs</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns sriov-vfs</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/sriov-vfs">/sriov-vfs</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns sriov-vf</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                pci-id
-                                            </td>
-                                            <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vf-vlan-filter
-                                            </td>
-                                            <td>
-                                               <p>This metadata provides option to specify list of VLAN filters applied on VF to pass the traffic to VM.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vf-mac-filter
-                                            </td>
-                                            <td>
-                                               <p>When MAC filters are specified, VF-agent service configures VFs to do MAC level filtering before the traffic is passed to VM.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vf-vlan-strip
-                                            </td>
-                                            <td>
-                                               <p>When this field is set to true, VF will configured to strip the outer TAG before the traffic is passed to VM.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">boolean</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/sriov-vf">/sriov-vf</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing sriov-vf</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>sriov-vf object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/sriov-vf">/sriov-vf</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                pci-id
-                                            </td>
-                                            <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing sriov-vf</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing sriov-vf</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                pci-id
-                                            </td>
-                                            <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                pci-id
-                                            </td>
-                                            <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--sriov-vfs-sriov-vf--pci-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                pci-id
-                                            </td>
-                                            <td>
-                                               <p>PCI ID used to identify the sriov-vf</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns vlans</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns vlans</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vlans">/vlans</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns vlan</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vpn-id
-                                            </td>
-                                            <td>
-                                               <p>This indicates the customers VPN ID associated with this vlan</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vlan">/vlan</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing vlan</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>vlan object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/vlan">/vlan</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing vlan</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing vlan</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vpn-id
-                                            </td>
-                                            <td>
-                                               <p>This indicates the customers VPN ID associated with this vlan</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-subnet-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l3-interface-ipv4-address-list object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv4-address-list">/l3-interface-ipv4-address-list</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv4-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv4-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv4-address-list--l3-interface-ipv4-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv4-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this VNF by BAU Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                prov-status
-                                            </td>
-                                            <td>
-                                               <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-id
-                                            </td>
-                                            <td>
-                                               <p>ID of interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                macaddr
-                                            </td>
-                                            <td>
-                                               <p>MAC address for the interface</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                network-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vpn-id
-                                            </td>
-                                            <td>
-                                               <p>This indicates the customers VPN ID associated with this vlan</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-id-inner
-                                            </td>
-                                            <td>
-                                               <p>Inner VLAN tag</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">integer</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-network-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron network id of the interface that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                neutron-subnet-id
-                                            </td>
-                                            <td>
-                                               <p>Neutron id of subnet that address belongs to</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>l3-interface-ipv6-address-list object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/l3-interface-ipv6-address-list">/l3-interface-ipv6-address-list</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing l3-interface-ipv6-address-list</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing l3-interface-ipv6-address-list</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--l3-interface-ipv6-address-list--l3-interface-ipv6-address--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                l3-interface-ipv6-address
-                                            </td>
-                                            <td>
-                                               <p>IP address</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--l-interfaces-l-interface--interface-name--vlans-vlan--vlan-interface--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name given to the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vlan-interface
-                                            </td>
-                                            <td>
-                                               <p>String that identifies the interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--p-interfaces-p-interface--interface-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/p-interfaces/p-interface/{interface-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                interface-name
-                                            </td>
-                                            <td>
-                                               <p>Name that identifies the physical interface</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpls-pes-vpls-pe--equipment-name--relationship-list-relationship-"></span>
-            <div id="operation--network-vpls-pes-vpls-pe--equipment-name--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpls-pes/vpls-pe/{equipment-name}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                equipment-name
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpn-bindings-"></span>
-            <div id="operation--network-vpn-bindings-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns vpn-bindings</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpn-bindings</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns vpn-bindings</p>
-            
-                    </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vpn-bindings">/vpn-bindings</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpn-bindings-vpn-binding--vpn-id--"></span>
-            <div id="operation--network-vpn-bindings-vpn-binding--vpn-id--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns vpn-binding</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/vpn-bindings/vpn-binding/{vpn-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns vpn-binding</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vpn-id
-                                            </td>
-                                            <td>
-                                               <p>VPN ID, globally unique within A&AI</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vpn-name
-                                            </td>
-                                            <td>
-                                               <p>VPN Name</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                global-route-target
-                                            </td>
-                                            <td>
-                                               <p>Number used to identify a VPN, globally unique in the network</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                vpn-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the vpn, should be taken from enumerated/valid values</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/vpn-binding">/vpn-binding</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpn-bindings-vpn-binding--vpn-id--"></span>
-            <div id="operation--network-vpn-bindings-vpn-binding--vpn-id--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing vpn-binding</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpn-bindings/vpn-binding/{vpn-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing vpn-binding</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>vpn-binding object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/vpn-binding">/vpn-binding</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vpn-id
-                                            </td>
-                                            <td>
-                                               <p>VPN ID, globally unique within A&AI</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpn-bindings-vpn-binding--vpn-id--"></span>
-            <div id="operation--network-vpn-bindings-vpn-binding--vpn-id--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing vpn-binding</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpn-bindings/vpn-binding/{vpn-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing vpn-binding</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vpn-id
-                                            </td>
-                                            <td>
-                                               <p>VPN ID, globally unique within A&AI</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpn-bindings-vpn-binding--vpn-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpn-bindings-vpn-binding--vpn-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/vpn-bindings/vpn-binding/{vpn-id}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vpn-id
-                                            </td>
-                                            <td>
-                                               <p>VPN ID, globally unique within A&AI</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-vpn-bindings-vpn-binding--vpn-id--relationship-list-relationship-"></span>
-            <div id="operation--network-vpn-bindings-vpn-binding--vpn-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/vpn-bindings/vpn-binding/{vpn-id}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                vpn-id
-                                            </td>
-                                            <td>
-                                               <p>VPN ID, globally unique within A&AI</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-zones-"></span>
-            <div id="operation--network-zones-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns zones</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/zones</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns zones</p>
-            
-                    </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/zones">/zones</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-zones-zone--zone-id--"></span>
-            <div id="operation--network-zones-zone--zone-id--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns zone</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/network/zones/zone/{zone-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns zone</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                zone-id
-                                            </td>
-                                            <td>
-                                               <p>Code assigned by AIC to the zone</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                design-type
-                                            </td>
-                                            <td>
-                                               <p>Design of zone [Medium/Large?]</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                zone-context
-                                            </td>
-                                            <td>
-                                               <p>Context of zone [production/test]</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/zone">/zone</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-zones-zone--zone-id--"></span>
-            <div id="operation--network-zones-zone--zone-id--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing zone</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/zones/zone/{zone-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing zone</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>zone object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/zone">/zone</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                zone-id
-                                            </td>
-                                            <td>
-                                               <p>Code assigned by AIC to the zone</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-zones-zone--zone-id--"></span>
-            <div id="operation--network-zones-zone--zone-id--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing zone</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/zones/zone/{zone-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing zone</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                zone-id
-                                            </td>
-                                            <td>
-                                               <p>Code assigned by AIC to the zone</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-zones-zone--zone-id--relationship-list-relationship-"></span>
-            <div id="operation--network-zones-zone--zone-id--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/network/zones/zone/{zone-id}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                zone-id
-                                            </td>
-                                            <td>
-                                               <p>Code assigned by AIC to the zone</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--network-zones-zone--zone-id--relationship-list-relationship-"></span>
-            <div id="operation--network-zones-zone--zone-id--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/network/zones/zone/{zone-id}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-Network">Network</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                zone-id
-                                            </td>
-                                            <td>
-                                               <p>Code assigned by AIC to the zone</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-"></span>
-            <div id="operation--service-design-and-creation-models-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns models</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns models</p>
-            
-                    </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/models">/models</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns model</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns model</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/model">/model</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing model</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing model</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>model object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/model">/model</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing model</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing model</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns model-vers</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns model-vers</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/model-vers">/model-vers</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns model-ver</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns model-ver</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the model, which can change from version to version.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version
-                                            </td>
-                                            <td>
-                                               <p>Version</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/model-ver">/model-ver</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing model-ver</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing model-ver</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>model-ver object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/model-ver">/model-ver</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing model-ver</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing model-ver</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--metadata-"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--metadata-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns metadata</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/metadata</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns metadata</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the model, which can change from version to version.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version
-                                            </td>
-                                            <td>
-                                               <p>Version</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/metadata">/metadata</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--metadata-metadatum--metaname--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--metadata-metadatum--metaname--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns metadatum</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/metadata/metadatum/{metaname}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns metadatum</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                metaname
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the model, which can change from version to version.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version
-                                            </td>
-                                            <td>
-                                               <p>Version</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/metadatum">/metadatum</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--metadata-metadatum--metaname--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--metadata-metadatum--metaname--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing metadatum</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/metadata/metadatum/{metaname}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing metadatum</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>metadatum object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/metadatum">/metadatum</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                metaname
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--metadata-metadatum--metaname--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--metadata-metadatum--metaname--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing metadatum</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/metadata/metadatum/{metaname}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing metadatum</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                metaname
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns model-elements</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns model-elements</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the model, which can change from version to version.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version
-                                            </td>
-                                            <td>
-                                               <p>Version</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/model-elements">/model-elements</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns model-element</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns model-element</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-element-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the model, which can change from version to version.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version
-                                            </td>
-                                            <td>
-                                               <p>Version</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/model-element">/model-element</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing model-element</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing model-element</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>model-element object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/model-element">/model-element</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-element-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing model-element</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing model-element</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-element-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns model-constraints</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns model-constraints</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-element-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the model, which can change from version to version.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version
-                                            </td>
-                                            <td>
-                                               <p>Version</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/model-constraints">/model-constraints</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns model-constraint</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns model-constraint</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-element-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-constraint-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the model, which can change from version to version.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version
-                                            </td>
-                                            <td>
-                                               <p>Version</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/model-constraint">/model-constraint</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing model-constraint</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing model-constraint</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>model-constraint object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/model-constraint">/model-constraint</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-element-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-constraint-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing model-constraint</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing model-constraint</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-element-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-constraint-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns constrained-element-sets</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns constrained-element-sets</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-element-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-constraint-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the model, which can change from version to version.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version
-                                            </td>
-                                            <td>
-                                               <p>Version</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/constrained-element-sets">/constrained-element-sets</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns constrained-element-set</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns constrained-element-set</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-element-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-constraint-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                constrained-element-set-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the model, which can change from version to version.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version
-                                            </td>
-                                            <td>
-                                               <p>Version</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/constrained-element-set">/constrained-element-set</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing constrained-element-set</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing constrained-element-set</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>constrained-element-set object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/constrained-element-set">/constrained-element-set</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-element-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-constraint-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                constrained-element-set-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing constrained-element-set</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing constrained-element-set</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-element-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-constraint-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                constrained-element-set-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns element-choice-sets</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}/element-choice-sets</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns element-choice-sets</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-element-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-constraint-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                constrained-element-set-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the model, which can change from version to version.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version
-                                            </td>
-                                            <td>
-                                               <p>Version</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/element-choice-sets">/element-choice-sets</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--get" class="swagger--panel-operation-get panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">returns element-choice-set</div>
-                    <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}/element-choice-sets/element-choice-set/{element-choice-set-uuid}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>returns element-choice-set</p>
-            
-                    </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-element-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-constraint-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                constrained-element-set-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                element-choice-set-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-type
-                                            </td>
-                                            <td>
-                                               <p>Type of the model, e.g., service, resource, widget, etc.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-name
-                                            </td>
-                                            <td>
-                                               <p>Name of the model, which can change from version to version.</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version
-                                            </td>
-                                            <td>
-                                               <p>Version</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                    <dt class="sw-response-200">
-                                        200 OK
-                                    
-                                    </dt>
-                                    <dd class="sw-response-200">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>successful operation</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-
-                                                <div class="col-md-6 sw-response-model">
-                                                <div  class="panel panel-definition">
-
-                                                    <div class="panel-body">
-                                                        <a class="json-schema-ref" href="#/definitions/element-choice-set">/element-choice-set</a>
-                                                    </div>
-                                                </div>
-                                                </div>
-
-                                            </div>                </dd>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">create or update an existing element-choice-set</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}/element-choice-sets/element-choice-set/{element-choice-set-uuid}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>create or update an existing element-choice-set</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>element-choice-set object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/element-choice-set">/element-choice-set</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-element-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-constraint-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                constrained-element-set-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                element-choice-set-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing element-choice-set</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}/element-choice-sets/element-choice-set/{element-choice-set-uuid}</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing element-choice-set</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-element-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-constraint-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                constrained-element-set-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                element-choice-set-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                resource-version
-                                            </td>
-                                            <td>
-                                               <p>resource-version for concurrency</p>
-                                        </td>
-                                            <td>query</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--relationship-list-relationship-"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}/element-choice-sets/element-choice-set/{element-choice-set-uuid}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-element-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-constraint-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                constrained-element-set-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                element-choice-set-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--relationship-list-relationship-"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--element-choice-sets-element-choice-set--element-choice-set-uuid--relationship-list-relationship-delete" class="swagger--panel-operation-delete panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">delete an existing relationship</div>
-                    <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}/element-choice-sets/element-choice-set/{element-choice-set-uuid}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>delete an existing relationship</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-element-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-constraint-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                constrained-element-set-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                element-choice-set-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                </tbody>
-                            </table>
-                        </section>
-
-                        <section class="sw-responses">
-                                <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                    </p>
-                    
-                            <dl>
-                                <dt class="sw-response-default">
-                                        default 
-                                    
-                                    </dt>
-                                    <dd class="sw-response-default">
-                                            <div class="row">
-                                                <div class="col-md-12">
-                                                    <p>Response codes found in <a href="https://wiki.onap.org/">response codes</a>.</p>
-                                            
-                                                </div>
-                                            </div>
-                                            <div class="row">
-                                                
-                                                <div class="col-md-6 sw-response-model">
-                                            </div>
-                                            
-                                            </div>                </dd>
-                            </dl>
-                        </section>
-                </div>
-            </div>    
-        
-        <span id="path--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--relationship-list-relationship-"></span>
-            <div id="operation--service-design-and-creation-models-model--model-invariant-id--model-vers-model-ver--model-version-id--model-elements-model-element--model-element-uuid--model-constraints-model-constraint--model-constraint-uuid--constrained-element-sets-constrained-element-set--constrained-element-set-uuid--relationship-list-relationship-put" class="swagger--panel-operation-put panel">
-                <div class="panel-heading">
-                    <div class="operation-summary">see node definition for valid relationships</div>
-                    <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}/model-elements/model-element/{model-element-uuid}/model-constraints/model-constraint/{model-constraint-uuid}/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}/relationship-list/relationship</strong></h3>
-                        Tags:
-                            <a href="#tag-ServiceDesignAndCreation">ServiceDesignAndCreation</a>
-                </div>
-                <div class="panel-body">
-                    <section class="sw-operation-description">
-                        <p>see node definition for valid relationships</p>
-            
-                    </section>
-                       <section class="sw-request-body">
-                                
-                                    <p><span class="label label-default">application/json</span> <span class="label label-default">application/xml</span> 
-                        </p>
-                                               <div class="row">
-                                            <div class="col-md-6">
-                                                <p><p>relationship object that needs to be created or updated</p>
-                        </p>
-                                            </div>
-                                            <div class="col-md-6 sw-request-model">
-                            <div  class="panel panel-definition">
-                                <div class="panel-body">
-                                            <a class="json-schema-ref" href="#/definitions/relationship">/relationship</a>
-                                </div>
-                            </div></div>
-                                        </div>
-                            </section>
-                        <section class="sw-request-params">
-                            <table class="table">
-                                <thead>
-                                <tr>
-                                    <th class="sw-param-name"></th>
-                                    <th class="sw-param-description"></th>
-                                    <th class="sw-param-type"></th>
-                                    <th class="sw-param-data-type"></th>
-                                    <th class="sw-param-annotation"></th>
-                                </tr>
-                                </thead>
-                                <tbody>
-                                        <tr>
-                                            <td>
-                                                model-invariant-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to the main definition of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-version-id
-                                            </td>
-                                            <td>
-                                               <p>Unique identifier corresponding to one version of a model in ASDC</p>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-element-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                model-constraint-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
-                                            </td>
-                                        </tr>
-                                        <tr>
-                                            <td>
-                                                constrained-element-set-uuid
-                                            </td>
-                                            <td>
-                                        </td>
-                                            <td>path</td>
-                                            <td>
-                                               <span class="json-property-type">string</span>
-                                        <span class="json-property-range" title="Value limits"></span>
-                                            </td>
-                                            <td>
-                                                    <span class="json-property-required"></span>
+                                                    <span class="json-property-required"></span>
                                             </td>
                                         </tr>
                                 </tbody>
@@ -148565,7 +131065,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </div>
                     <div class="panel-body">
                                        <section class="json-schema-description">
-                                    <p>cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&T's AIC.</p>
+                                    <p>cloud-region designates an installation of a cloud cluster or region or instantiation.</p>
 <h6 id="default-delete-scope">Default Delete Scope</h6>
 <p>THIS_NODE_ONLY</p>
 <h6 id="related-nodes">Related Nodes</h6>
@@ -148964,7 +131464,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <li>FROM pserver</li>
 <li>FROM pnf</li>
 <li>FROM vce</li>
-<li>FROM vpe</li>
 <li>FROM vpls-pe</li>
 <li>FROM volume-group</li>
 <li>FROM zone</li></ul>
@@ -149730,7 +132229,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <ul>
 <li>TO availability-zone (Many2Many)</li>
 <li>FROM complex (is composed of ctag-pool)</li>
-<li>FROM vpe</li>
 <li>FROM vpls-pe</li></ul>
                             
                                 </section>
@@ -150214,7 +132712,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </div>
                     <div class="panel-body">
                                        <section class="json-schema-description">
-                                    <p>Collection of digital virtual switch metadata used for vmWare VCEs and VPEs.</p>
+                                    <p>Collection of digital virtual switch metadata used for vmWare VCEs and GenericVnfs.</p>
                             
                                 </section>
 
@@ -150667,8 +133165,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <h6 id="related-nodes">Related Nodes</h6>
 <ul>
 <li>FROM generic-vnf (is composed of entitlement)</li>
-<li>FROM vce (is composed of entitlement)</li>
-<li>FROM vpe (is composed of entitlement)</li></ul>
+<li>FROM vce (is composed of entitlement)</li></ul>
                             
                                 </section>
 
@@ -151065,6 +133562,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <p>CASCADE_TO_CHILDREN</p>
 <h6 id="related-nodes">Related Nodes</h6>
 <ul>
+<li>TO license-key-resource (Many2Many)</li>
 <li>TO l-interface (comprises generic-vnf, Many2Many)</li>
 <li>TO availability-zone (Many2Many)</li>
 <li>TO lag-interface (comprises generic-vnf, Many2Many)</li>
@@ -151078,7 +133576,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <li>TO ipsec-configuration (Many2One)</li>
 <li>TO vf-module (comprises generic-vnf, One2Many)</li>
 <li>TO volume-group (One2Many)</li>
-<li>TO vnfc (One2Many, will delete target node)</li>
+<li>TO vnfc (One2Many)</li>
 <li>TO instance-group (Many2Many)</li>
 <li>TO entitlement (comprises generic-vnf, One2Many)</li>
 <li>TO license (comprises generic-vnf, One2Many)</li>
@@ -151882,7 +134380,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <p>ERROR_4_IN_EDGES_OR_CASCADE</p>
 <h6 id="related-nodes">Related Nodes</h6>
 <ul>
-<li>TO metadata (comprises image, Many2Many)</li>
 <li>TO metadatum (comprises image, Many2Many)</li>
 <li>FROM cloud-region (is composed of image)</li>
 <li>FROM vserver</li></ul>
@@ -153179,14 +135676,13 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <ul>
 <li>TO l3-interface-ipv4-address-list (comprises l-interface, Many2Many)</li>
 <li>TO l3-interface-ipv6-address-list (comprises l-interface, Many2Many)</li>
-<li>TO logical-link (Many2Many, will delete target node)</li>
+<li>TO logical-link (Many2Many)</li>
 <li>TO vlan (comprises l-interface, Many2Many)</li>
 <li>TO sriov-vf (comprises l-interface, One2One)</li>
 <li>FROM generic-vnf (is composed of l-interface)</li>
 <li>FROM lag-interface (is composed of l-interface)</li>
 <li>FROM newvce (is composed of l-interface)</li>
 <li>FROM p-interface (is composed of l-interface)</li>
-<li>FROM vpe (is composed of l-interface)</li>
 <li>FROM vserver (is composed of l-interface)</li></ul>
                             
                                 </section>
@@ -154226,13 +136722,12 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <p>CASCADE_TO_CHILDREN</p>
 <h6 id="related-nodes">Related Nodes</h6>
 <ul>
-<li>TO lag-link (Many2Many, will delete target node)</li>
+<li>TO lag-link (Many2Many)</li>
 <li>TO p-interface (Many2Many)</li>
 <li>TO l-interface (comprises lag-interface, Many2Many)</li>
 <li>FROM generic-vnf (is composed of lag-interface)</li>
 <li>FROM pserver (is composed of lag-interface)</li>
 <li>FROM pnf (is composed of lag-interface)</li>
-<li>FROM vpe (is composed of lag-interface)</li>
 <li>FROM vpls-pe (is composed of lag-interface)</li></ul>
                             
                                 </section>
@@ -154551,8 +137046,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <h6 id="related-nodes">Related Nodes</h6>
 <ul>
 <li>FROM generic-vnf (is composed of license)</li>
-<li>FROM vce (is composed of license)</li>
-<li>FROM vpe (is composed of license)</li></ul>
+<li>FROM vce (is composed of license)</li></ul>
                             
                                 </section>
 
@@ -154685,11 +137179,11 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <li>TO cloud-region (Many2Many)</li>
 <li>TO vpn-binding (Many2Many)</li>
 <li>FROM l-interface</li>
-<li>FROM logical-link</li>
 <li>FROM p-interface</li>
 <li>FROM service-instance</li>
 <li>FROM virtual-data-center</li>
-<li>FROM vlan</li></ul>
+<li>FROM vlan</li>
+<li>FROM logical-link</li></ul>
                             
                                 </section>
 
@@ -155004,9 +137498,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                     <p>Collection of metadatum (key/value pairs)</p>
 <h6 id="default-delete-scope">Default Delete Scope</h6>
 <p>THIS_NODE_ONLY</p>
-<h6 id="related-nodes">Related Nodes</h6>
-<ul>
-<li>FROM image (is composed of metadata)</li></ul>
                             
                                 </section>
 
@@ -155452,8 +137943,8 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <li>TO model-constraint (comprises model-element, One2Many)</li>
 <li>TO constrained-element-set (comprises model-element, One2Many)</li>
 <li>FROM model-ver (is composed of model-element)</li>
-<li>FROM model-element (is composed of model-element)</li>
-<li>FROM element-choice-set (is composed of model-element)</li></ul>
+<li>FROM element-choice-set (is composed of model-element)</li>
+<li>FROM model-element (is composed of model-element)</li></ul>
                             
                                 </section>
 
@@ -156502,26 +138993,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                                         </div>
                                                                     </section>                </div>
                                             </dd>
-                                            <dt data-property-name="vpes">
-                                                <span class="json-property-name">vpes:</span>
-                                                <span class="json-property-type">object[]</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                
-                                                <div class="json-inner-schema">
-                                                    
-                                                                    <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/vpe">vpe</a>
-                                                                        </span>
-                                                                        <span class="json-property-range" title="Value limits"></span>
-                                                                        
-                                                                        <div class="json-inner-schema">
-                                                                            
-                                                                        </div>
-                                                                    </section>                </div>
-                                            </dd>
                                             <dt data-property-name="vnfcs">
                                                 <span class="json-property-name">vnfcs:</span>
                                                 <span class="json-property-type">object[]</span>
@@ -157137,7 +139608,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 
                                             </dt>
                                             <dd>
-                                                <p>Address tail-f uses to configure vpe, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).</p>
+                                                <p>Address tail-f uses to configure generic-vnf, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).</p>
                                                 <div class="json-inner-schema">
                                                     
                                                 </div>
@@ -157149,7 +139620,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 
                                             </dt>
                                             <dd>
-                                                <p>Client should send valid enumerated value, e.g., VPE.</p>
+                                                <p>Client should send valid enumerated value.</p>
                                                 <div class="json-inner-schema">
                                                     
                                                 </div>
@@ -157933,7 +140404,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <h6 id="related-nodes">Related Nodes</h6>
 <ul>
 <li>TO l-interface (comprises p-interface, Many2Many)</li>
-<li>TO physical-link (Many2Many, will delete target node)</li>
+<li>TO physical-link (Many2Many)</li>
 <li>TO logical-link (Many2One)</li>
 <li>FROM lag-interface</li>
 <li>FROM pserver (is composed of p-interface)</li>
@@ -161224,7 +143695,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <li>TO pnf (One2Many)</li>
 <li>TO connector (Many2Many)</li>
 <li>TO metadatum (comprises service-instance, Many2Many)</li>
-<li>TO logical-link (Many2Many, will delete target node)</li>
+<li>TO logical-link (Many2Many)</li>
 <li>TO vlan (One2Many)</li>
 <li>TO service-instance (One2Many)</li>
 <li>TO ctag-assignment (One2Many)</li>
@@ -162591,7 +145062,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                     <div class="panel-body">
                                        <section class="json-schema-description">
                                     <h6 id="default-delete-scope">Default Delete Scope</h6>
-<p>THIS_NODE_ONLY</p>
+<p>ERROR_IF_ANY_IN_EDGES</p>
 <h6 id="related-nodes">Related Nodes</h6>
 <ul>
 <li>FROM l3-interface-ipv4-address-list</li>
@@ -163684,7 +146155,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <ul>
 <li>TO volume-group (One2One)</li>
 <li>TO l3-network (Many2Many)</li>
-<li>TO vnfc (One2Many, will delete target node)</li>
+<li>TO vnfc (One2Many)</li>
 <li>FROM vserver</li>
 <li>FROM generic-vnf (is composed of vf-module)</li></ul>
                             
@@ -164216,7 +146687,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <li>TO l3-interface-ipv4-address-list (comprises vlan, Many2Many)</li>
 <li>TO l3-interface-ipv6-address-list (comprises vlan, Many2Many)</li>
 <li>TO multicast-configuration (Many2Many)</li>
-<li>TO logical-link (Many2Many, will delete target node)</li>
+<li>TO logical-link (Many2Many)</li>
 <li>FROM l-interface (is composed of vlan)</li>
 <li>FROM service-instance</li>
 <li>FROM allotted-resource</li></ul>
@@ -164809,683 +147280,29 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                                         </div>
                                                                     </section>                </div>
                                             </dd>
-                                    </dl>
-                                </section>
-                    </div>
-                </div>
-                <div id="definition-vnfcs" class="panel panel-definition">
-                        <div class="panel-heading">
-                                <h3 class="panel-title"><a name="/definitions/vnfcs"></a>vnfcs:
-                                    <span class="json-property-type"><span class="json-property-type">object</span>
-                <span class="json-property-range" title="Value limits"></span>
-                
-                </span>
-                                </h3>
-                        </div>
-                    <div class="panel-body">
-                                       <section class="json-schema-description">
-                                    <p>virtual network components associated with a vserver from application controller.</p>
-                            
-                                </section>
-
-                                <section class="json-schema-properties">
-                                    <dl>
-                                            <dt data-property-name="vnfc">
-                                                <span class="json-property-name">vnfc:</span>
-                                                <span class="json-property-type">object[]</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                
-                                                <div class="json-inner-schema">
-                                                    
-                                                                    <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/vnfc">vnfc</a>
-                                                                        </span>
-                                                                        <span class="json-property-range" title="Value limits"></span>
-                                                                        
-                                                                        <div class="json-inner-schema">
-                                                                            
-                                                                        </div>
-                                                                    </section>                </div>
-                                            </dd>
-                                    </dl>
-                                </section>
-                    </div>
-                </div>
-                <div id="definition-volume" class="panel panel-definition">
-                        <div class="panel-heading">
-                                <h3 class="panel-title"><a name="/definitions/volume"></a>volume:
-                                    <span class="json-property-type"><span class="json-property-type">object</span>
-                <span class="json-property-range" title="Value limits"></span>
-                
-                </span>
-                                </h3>
-                        </div>
-                    <div class="panel-body">
-                                       <section class="json-schema-description">
-                                    <p>Ephemeral Block storage volume.</p>
-<h6 id="default-delete-scope">Default Delete Scope</h6>
-<p>THIS_NODE_ONLY</p>
-<h6 id="related-nodes">Related Nodes</h6>
-<ul>
-<li>FROM vserver (is composed of volume)</li></ul>
-                            
-                                </section>
-
-                                <section class="json-schema-properties">
-                                    <dl>
-                                            <dt data-property-name="volume-id">
-                                                <span class="json-property-name">volume-id:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                                 <span class="json-property-required"></span>
-                                            </dt>
-                                            <dd>
-                                                <p>Unique ID of block storage volume relative to the vserver.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="volume-selflink">
-                                                <span class="json-property-name">volume-selflink:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                                 <span class="json-property-required"></span>
-                                            </dt>
-                                            <dd>
-                                                <p>URL to endpoint where AAI can get more details</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="resource-version">
-                                                <span class="json-property-name">resource-version:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Used for optimistic concurrency.  Must be empty on create, valid on update and delete.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="relationship-list">
-                                                <span class="json-property-name">relationship-list:</span>
-                                                <span class="json-property-type">object[]</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                
-                                                <div class="json-inner-schema">
-                                                    
-                                                                    <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/relationship">relationship</a>
-                                                                        </span>
-                                                                        <span class="json-property-range" title="Value limits"></span>
-                                                                        
-                                                                        <div class="json-inner-schema">
-                                                                            
-                                                                        </div>
-                                                                    </section>                </div>
-                                            </dd>
-                                    </dl>
-                                </section>
-                    </div>
-                </div>
-                <div id="definition-volume-group" class="panel panel-definition">
-                        <div class="panel-heading">
-                                <h3 class="panel-title"><a name="/definitions/volume-group"></a>volume-group:
-                                    <span class="json-property-type"><span class="json-property-type">object</span>
-                <span class="json-property-range" title="Value limits"></span>
-                
-                </span>
-                                </h3>
-                        </div>
-                    <div class="panel-body">
-                                       <section class="json-schema-description">
-                                    <p>Persistent block-level storage.</p>
-<h6 id="default-delete-scope">Default Delete Scope</h6>
-<p>THIS_NODE_ONLY</p>
-<h6 id="related-nodes">Related Nodes</h6>
-<ul>
-<li>TO complex (Many2Many)</li>
-<li>TO tenant (Many2Many)</li>
-<li>FROM cloud-region (is composed of volume-group)</li>
-<li>FROM vf-module</li>
-<li>FROM generic-vnf</li></ul>
-                            
-                                </section>
-
-                                <section class="json-schema-properties">
-                                    <dl>
-                                            <dt data-property-name="volume-group-id">
-                                                <span class="json-property-name">volume-group-id:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                                 <span class="json-property-required"></span>
-                                            </dt>
-                                            <dd>
-                                                <p>Unique ID of volume-group.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="volume-group-name">
-                                                <span class="json-property-name">volume-group-name:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                                 <span class="json-property-required"></span>
-                                            </dt>
-                                            <dd>
-                                                <p>Name of the volume group.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="heat-stack-id">
-                                                <span class="json-property-name">heat-stack-id:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Heat stack id corresponding to this volume-group</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="vnf-type">
-                                                <span class="json-property-name">vnf-type:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                                 <span class="json-property-required"></span>
-                                            </dt>
-                                            <dd>
-                                                <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="orchestration-status">
-                                                <span class="json-property-name">orchestration-status:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Orchestration status of this volume-group</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="persona-model-customization-id">
-                                                <span class="json-property-name">persona-model-customization-id:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>captures the id of all the configuration used to customize the resource for the service.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="vf-module-persona-model-customization-id">
-                                                <span class="json-property-name">vf-module-persona-model-customization-id:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>helps relate the volume group to the vf-module whose components will require the volume group</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="resource-version">
-                                                <span class="json-property-name">resource-version:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Used for optimistic concurrency.  Must be empty on create, valid on update and delete.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="relationship-list">
-                                                <span class="json-property-name">relationship-list:</span>
-                                                <span class="json-property-type">object[]</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                
-                                                <div class="json-inner-schema">
-                                                    
-                                                                    <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/relationship">relationship</a>
-                                                                        </span>
-                                                                        <span class="json-property-range" title="Value limits"></span>
-                                                                        
-                                                                        <div class="json-inner-schema">
-                                                                            
-                                                                        </div>
-                                                                    </section>                </div>
-                                            </dd>
-                                    </dl>
-                                </section>
-                    </div>
-                </div>
-                <div id="definition-volume-groups" class="panel panel-definition">
-                        <div class="panel-heading">
-                                <h3 class="panel-title"><a name="/definitions/volume-groups"></a>volume-groups:
-                                    <span class="json-property-type"><span class="json-property-type">object</span>
-                <span class="json-property-range" title="Value limits"></span>
-                
-                </span>
-                                </h3>
-                        </div>
-                    <div class="panel-body">
-                                       <section class="json-schema-description">
-                                    <p>Collection of persistent block-level storage.</p>
-                            
-                                </section>
-
-                                <section class="json-schema-properties">
-                                    <dl>
-                                            <dt data-property-name="volume-group">
-                                                <span class="json-property-name">volume-group:</span>
-                                                <span class="json-property-type">object[]</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                
-                                                <div class="json-inner-schema">
-                                                    
-                                                                    <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/volume-group">volume-group</a>
-                                                                        </span>
-                                                                        <span class="json-property-range" title="Value limits"></span>
-                                                                        
-                                                                        <div class="json-inner-schema">
-                                                                            
-                                                                        </div>
-                                                                    </section>                </div>
-                                            </dd>
-                                    </dl>
-                                </section>
-                    </div>
-                </div>
-                <div id="definition-volumes" class="panel panel-definition">
-                        <div class="panel-heading">
-                                <h3 class="panel-title"><a name="/definitions/volumes"></a>volumes:
-                                    <span class="json-property-type"><span class="json-property-type">object</span>
-                <span class="json-property-range" title="Value limits"></span>
-                
-                </span>
-                                </h3>
-                        </div>
-                    <div class="panel-body">
-                                       <section class="json-schema-description">
-                                    <p>Collection of ephemeral Block storage volumes.</p>
-                            
-                                </section>
-
-                                <section class="json-schema-properties">
-                                    <dl>
-                                            <dt data-property-name="volume">
-                                                <span class="json-property-name">volume:</span>
-                                                <span class="json-property-type">object[]</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                
-                                                <div class="json-inner-schema">
-                                                    
-                                                                    <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/volume">volume</a>
-                                                                        </span>
-                                                                        <span class="json-property-range" title="Value limits"></span>
-                                                                        
-                                                                        <div class="json-inner-schema">
-                                                                            
-                                                                        </div>
-                                                                    </section>                </div>
-                                            </dd>
-                                    </dl>
-                                </section>
-                    </div>
-                </div>
-                <div id="definition-vpe" class="panel panel-definition">
-                        <div class="panel-heading">
-                                <h3 class="panel-title"><a name="/definitions/vpe"></a>vpe:
-                                    <span class="json-property-type"><span class="json-property-type">object</span>
-                <span class="json-property-range" title="Value limits"></span>
-                
-                </span>
-                                </h3>
-                        </div>
-                    <div class="panel-body">
-                                       <section class="json-schema-description">
-                                    <p>Relationship-list must include related to info for complex.</p>
-<h6 id="default-delete-scope">Default Delete Scope</h6>
-<p>CASCADE_TO_CHILDREN</p>
-<h6 id="related-nodes">Related Nodes</h6>
-<ul>
-<li>TO complex (Many2Many)</li>
-<li>TO ctag-pool (Many2Many)</li>
-<li>TO l-interface (comprises vpe, Many2Many)</li>
-<li>TO lag-interface (comprises vpe, Many2Many)</li>
-<li>TO vserver (Many2Many)</li>
-<li>TO entitlement (comprises vpe, One2Many)</li>
-<li>TO license (comprises vpe, One2Many)</li></ul>
-                            
-                                </section>
-
-                                <section class="json-schema-properties">
-                                    <dl>
-                                            <dt data-property-name="vnf-id">
-                                                <span class="json-property-name">vnf-id:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                                 <span class="json-property-required"></span>
-                                            </dt>
-                                            <dd>
-                                                <p>Unique id of VNF.  This is unique across the graph.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="vnf-name">
-                                                <span class="json-property-name">vnf-name:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                                 <span class="json-property-required"></span>
-                                            </dt>
-                                            <dd>
-                                                <p>Name of VNF.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="vnf-name2">
-                                                <span class="json-property-name">vnf-name2:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Alternate name of VNF.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="vnf-type">
-                                                <span class="json-property-name">vnf-type:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                                 <span class="json-property-required"></span>
-                                            </dt>
-                                            <dd>
-                                                <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="service-id">
-                                                <span class="json-property-name">service-id:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="regional-resource-zone">
-                                                <span class="json-property-name">regional-resource-zone:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Regional way of organizing pservers, source of truth should define values</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="prov-status">
-                                                <span class="json-property-name">prov-status:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Trigger for operational monitoring of this resource by Service Assurance systems.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="operational-state">
-                                                <span class="json-property-name">operational-state:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Indicator for whether the resource is considered operational</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="license-key">
-                                                <span class="json-property-name">license-key:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>OBSOLETE -  do not use.  See child relationships.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="equipment-role">
-                                                <span class="json-property-name">equipment-role:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Client should send valid enumerated value</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="orchestration-status">
-                                                <span class="json-property-name">orchestration-status:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Orchestration status of this VNF, mastered by MSO</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="heat-stack-id">
-                                                <span class="json-property-name">heat-stack-id:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Heat stack id corresponding to this instance, managed by MSO</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="mso-catalog-key">
-                                                <span class="json-property-name">mso-catalog-key:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Corresponds to the SDN-C catalog id used to configure this VCE</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="ipv4-oam-address">
-                                                <span class="json-property-name">ipv4-oam-address:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Address tail-f uses to configure vpe, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="ipv4-oam-gateway-address-prefix-length">
-                                                <span class="json-property-name">ipv4-oam-gateway-address-prefix-length:</span>
-                                                <span class="json-property-type">integer</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Prefix length for oam-address</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="ipv4-oam-gateway-address">
-                                                <span class="json-property-name">ipv4-oam-gateway-address:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Gateway address</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="v4-loopback0-ip-address">
-                                                <span class="json-property-name">v4-loopback0-ip-address:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Loopback0 address</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="vlan-id-outer">
-                                                <span class="json-property-name">vlan-id-outer:</span>
-                                                <span class="json-property-type">integer</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Temporary location for stag to get to VCE</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="as-number">
-                                                <span class="json-property-name">as-number:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>as-number of the VPE</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="resource-version">
-                                                <span class="json-property-name">resource-version:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>Used for optimistic concurrency.  Must be empty on create, valid on update and delete.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="summary-status">
-                                                <span class="json-property-name">summary-status:</span>
-                                                <span class="json-property-type">string</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>details regarding the vpe operation, PLEASE DISCONTINUE USE OF THIS FIELD.</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="encrypted-access-flag">
-                                                <span class="json-property-name">encrypted-access-flag:</span>
-                                                <span class="json-property-type">boolean</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                <p>indicates whether vpe access uses SSH</p>
-                                                <div class="json-inner-schema">
-                                                    
-                                                </div>
-                                            </dd>
-                                            <dt data-property-name="relationship-list">
-                                                <span class="json-property-name">relationship-list:</span>
-                                                <span class="json-property-type">object[]</span>
-                                                <span class="json-property-range" title="Value limits"></span>
-                                                
-                                            </dt>
-                                            <dd>
-                                                
-                                                <div class="json-inner-schema">
-                                                    
-                                                                    <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/relationship">relationship</a>
-                                                                        </span>
-                                                                        <span class="json-property-range" title="Value limits"></span>
-                                                                        
-                                                                        <div class="json-inner-schema">
-                                                                            
-                                                                        </div>
-                                                                    </section>                </div>
-                                            </dd>
-                                            <dt data-property-name="l-interfaces">
-                                                <span class="json-property-name">l-interfaces:</span>
+                                    </dl>
+                                </section>
+                    </div>
+                </div>
+                <div id="definition-vnfcs" class="panel panel-definition">
+                        <div class="panel-heading">
+                                <h3 class="panel-title"><a name="/definitions/vnfcs"></a>vnfcs:
+                                    <span class="json-property-type"><span class="json-property-type">object</span>
+                <span class="json-property-range" title="Value limits"></span>
+                
+                </span>
+                                </h3>
+                        </div>
+                    <div class="panel-body">
+                                       <section class="json-schema-description">
+                                    <p>virtual network components associated with a vserver from application controller.</p>
+                            
+                                </section>
+
+                                <section class="json-schema-properties">
+                                    <dl>
+                                            <dt data-property-name="vnfc">
+                                                <span class="json-property-name">vnfc:</span>
                                                 <span class="json-property-type">object[]</span>
                                                 <span class="json-property-range" title="Value limits"></span>
                                                 
@@ -165495,7 +147312,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div class="json-inner-schema">
                                                     
                                                                     <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/l-interface">l-interface</a>
+                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/vnfc">vnfc</a>
                                                                         </span>
                                                                         <span class="json-property-range" title="Value limits"></span>
                                                                         
@@ -165504,8 +147321,72 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                                         </div>
                                                                     </section>                </div>
                                             </dd>
-                                            <dt data-property-name="lag-interfaces">
-                                                <span class="json-property-name">lag-interfaces:</span>
+                                    </dl>
+                                </section>
+                    </div>
+                </div>
+                <div id="definition-volume" class="panel panel-definition">
+                        <div class="panel-heading">
+                                <h3 class="panel-title"><a name="/definitions/volume"></a>volume:
+                                    <span class="json-property-type"><span class="json-property-type">object</span>
+                <span class="json-property-range" title="Value limits"></span>
+                
+                </span>
+                                </h3>
+                        </div>
+                    <div class="panel-body">
+                                       <section class="json-schema-description">
+                                    <p>Ephemeral Block storage volume.</p>
+<h6 id="default-delete-scope">Default Delete Scope</h6>
+<p>THIS_NODE_ONLY</p>
+<h6 id="related-nodes">Related Nodes</h6>
+<ul>
+<li>FROM vserver (is composed of volume)</li></ul>
+                            
+                                </section>
+
+                                <section class="json-schema-properties">
+                                    <dl>
+                                            <dt data-property-name="volume-id">
+                                                <span class="json-property-name">volume-id:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                                 <span class="json-property-required"></span>
+                                            </dt>
+                                            <dd>
+                                                <p>Unique ID of block storage volume relative to the vserver.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="volume-selflink">
+                                                <span class="json-property-name">volume-selflink:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                                 <span class="json-property-required"></span>
+                                            </dt>
+                                            <dd>
+                                                <p>URL to endpoint where AAI can get more details</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="resource-version">
+                                                <span class="json-property-name">resource-version:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                            </dt>
+                                            <dd>
+                                                <p>Used for optimistic concurrency.  Must be empty on create, valid on update and delete.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="relationship-list">
+                                                <span class="json-property-name">relationship-list:</span>
                                                 <span class="json-property-type">object[]</span>
                                                 <span class="json-property-range" title="Value limits"></span>
                                                 
@@ -165515,7 +147396,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div class="json-inner-schema">
                                                     
                                                                     <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/lag-interface">lag-interface</a>
+                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/relationship">relationship</a>
                                                                         </span>
                                                                         <span class="json-property-range" title="Value limits"></span>
                                                                         
@@ -165524,8 +147405,137 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                                         </div>
                                                                     </section>                </div>
                                             </dd>
-                                            <dt data-property-name="licenses">
-                                                <span class="json-property-name">licenses:</span>
+                                    </dl>
+                                </section>
+                    </div>
+                </div>
+                <div id="definition-volume-group" class="panel panel-definition">
+                        <div class="panel-heading">
+                                <h3 class="panel-title"><a name="/definitions/volume-group"></a>volume-group:
+                                    <span class="json-property-type"><span class="json-property-type">object</span>
+                <span class="json-property-range" title="Value limits"></span>
+                
+                </span>
+                                </h3>
+                        </div>
+                    <div class="panel-body">
+                                       <section class="json-schema-description">
+                                    <p>Persistent block-level storage.</p>
+<h6 id="default-delete-scope">Default Delete Scope</h6>
+<p>THIS_NODE_ONLY</p>
+<h6 id="related-nodes">Related Nodes</h6>
+<ul>
+<li>TO complex (Many2Many)</li>
+<li>TO tenant (Many2Many)</li>
+<li>FROM cloud-region (is composed of volume-group)</li>
+<li>FROM vf-module</li>
+<li>FROM generic-vnf</li></ul>
+                            
+                                </section>
+
+                                <section class="json-schema-properties">
+                                    <dl>
+                                            <dt data-property-name="volume-group-id">
+                                                <span class="json-property-name">volume-group-id:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                                 <span class="json-property-required"></span>
+                                            </dt>
+                                            <dd>
+                                                <p>Unique ID of volume-group.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="volume-group-name">
+                                                <span class="json-property-name">volume-group-name:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                                 <span class="json-property-required"></span>
+                                            </dt>
+                                            <dd>
+                                                <p>Name of the volume group.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="heat-stack-id">
+                                                <span class="json-property-name">heat-stack-id:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                            </dt>
+                                            <dd>
+                                                <p>Heat stack id corresponding to this volume-group</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="vnf-type">
+                                                <span class="json-property-name">vnf-type:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                                 <span class="json-property-required"></span>
+                                            </dt>
+                                            <dd>
+                                                <p>String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="orchestration-status">
+                                                <span class="json-property-name">orchestration-status:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                            </dt>
+                                            <dd>
+                                                <p>Orchestration status of this volume-group</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="persona-model-customization-id">
+                                                <span class="json-property-name">persona-model-customization-id:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                            </dt>
+                                            <dd>
+                                                <p>captures the id of all the configuration used to customize the resource for the service.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="vf-module-persona-model-customization-id">
+                                                <span class="json-property-name">vf-module-persona-model-customization-id:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                            </dt>
+                                            <dd>
+                                                <p>helps relate the volume group to the vf-module whose components will require the volume group</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="resource-version">
+                                                <span class="json-property-name">resource-version:</span>
+                                                <span class="json-property-type">string</span>
+                                                <span class="json-property-range" title="Value limits"></span>
+                                                
+                                            </dt>
+                                            <dd>
+                                                <p>Used for optimistic concurrency.  Must be empty on create, valid on update and delete.</p>
+                                                <div class="json-inner-schema">
+                                                    
+                                                </div>
+                                            </dd>
+                                            <dt data-property-name="relationship-list">
+                                                <span class="json-property-name">relationship-list:</span>
                                                 <span class="json-property-type">object[]</span>
                                                 <span class="json-property-range" title="Value limits"></span>
                                                 
@@ -165535,7 +147545,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div class="json-inner-schema">
                                                     
                                                                     <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/license">license</a>
+                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/relationship">relationship</a>
                                                                         </span>
                                                                         <span class="json-property-range" title="Value limits"></span>
                                                                         
@@ -165544,8 +147554,29 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                                         </div>
                                                                     </section>                </div>
                                             </dd>
-                                            <dt data-property-name="entitlements">
-                                                <span class="json-property-name">entitlements:</span>
+                                    </dl>
+                                </section>
+                    </div>
+                </div>
+                <div id="definition-volume-groups" class="panel panel-definition">
+                        <div class="panel-heading">
+                                <h3 class="panel-title"><a name="/definitions/volume-groups"></a>volume-groups:
+                                    <span class="json-property-type"><span class="json-property-type">object</span>
+                <span class="json-property-range" title="Value limits"></span>
+                
+                </span>
+                                </h3>
+                        </div>
+                    <div class="panel-body">
+                                       <section class="json-schema-description">
+                                    <p>Collection of persistent block-level storage.</p>
+                            
+                                </section>
+
+                                <section class="json-schema-properties">
+                                    <dl>
+                                            <dt data-property-name="volume-group">
+                                                <span class="json-property-name">volume-group:</span>
                                                 <span class="json-property-type">object[]</span>
                                                 <span class="json-property-range" title="Value limits"></span>
                                                 
@@ -165555,7 +147586,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div class="json-inner-schema">
                                                     
                                                                     <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/entitlement">entitlement</a>
+                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/volume-group">volume-group</a>
                                                                         </span>
                                                                         <span class="json-property-range" title="Value limits"></span>
                                                                         
@@ -165568,9 +147599,9 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                 </section>
                     </div>
                 </div>
-                <div id="definition-vpes" class="panel panel-definition">
+                <div id="definition-volumes" class="panel panel-definition">
                         <div class="panel-heading">
-                                <h3 class="panel-title"><a name="/definitions/vpes"></a>vpes:
+                                <h3 class="panel-title"><a name="/definitions/volumes"></a>volumes:
                                     <span class="json-property-type"><span class="json-property-type">object</span>
                 <span class="json-property-range" title="Value limits"></span>
                 
@@ -165579,14 +147610,14 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                         </div>
                     <div class="panel-body">
                                        <section class="json-schema-description">
-                                    <p>Virtual provider edge router. In 1504, A&AI will populate this object through an M&P and tool provided to operations.</p>
+                                    <p>Collection of ephemeral Block storage volumes.</p>
                             
                                 </section>
 
                                 <section class="json-schema-properties">
                                     <dl>
-                                            <dt data-property-name="vpe">
-                                                <span class="json-property-name">vpe:</span>
+                                            <dt data-property-name="volume">
+                                                <span class="json-property-name">volume:</span>
                                                 <span class="json-property-type">object[]</span>
                                                 <span class="json-property-range" title="Value limits"></span>
                                                 
@@ -165596,7 +147627,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 <div class="json-inner-schema">
                                                     
                                                                     <section class="json-schema-array-items">
-                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/vpe">vpe</a>
+                                                                        <span class="json-property-type">    <a class="json-schema-ref" href="#/definitions/volume">volume</a>
                                                                         </span>
                                                                         <span class="json-property-range" title="Value limits"></span>
                                                                         
@@ -165665,7 +147696,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
                                                 
                                             </dt>
                                             <dd>
-                                                <p>Address tail-f uses to configure vpe, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).</p>
+                                                <p>Address tail-f uses to configure generic-vnf, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).</p>
                                                 <div class="json-inner-schema">
                                                     
                                                 </div>
@@ -166013,7 +148044,6 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <ul>
 <li>TO flavor (Many2One)</li>
 <li>TO image (Many2One)</li>
-<li>TO ipaddress (comprises vserver, Many2Many)</li>
 <li>TO l-interface (comprises vserver, Many2Many)</li>
 <li>TO pserver (Many2One)</li>
 <li>TO volume (comprises vserver, Many2Many)</li>
@@ -166022,8 +148052,7 @@ This document is best viewed with Firefox or Chrome. Nodes can be found by appen
 <li>TO vf-module (Many2One)</li>
 <li>FROM generic-vnf</li>
 <li>FROM tenant (is composed of vserver)</li>
-<li>FROM vce</li>
-<li>FROM vpe</li></ul>
+<li>FROM vce</li></ul>
                             
                                 </section>
 
index dc62d7a..1dc7075 100644 (file)
@@ -22410,5106 +22410,6 @@ paths:
               $ref: "#/definitions/vces"
         "default":
           description: Response codes found in [response codes](https://wiki.onap.org/).
-  /network/vpes/vpe/{vnf-id}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceVlansVlanRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceVlansVlanRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv4-address-list
-      description: returns l3-interface-ipv4-address-list
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv4-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: vpn-id
-          in: query
-          description: This indicates the customers VPN ID associated with this vlan
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv4-address-list
-      description: create or update an existing l3-interface-ipv4-address-list
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv4-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv4-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv4-address-list
-      description: delete an existing l3-interface-ipv4-address-list
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv6-address-list
-      description: returns l3-interface-ipv6-address-list
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv6-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: vpn-id
-          in: query
-          description: This indicates the customers VPN ID associated with this vlan
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv6-address-list
-      description: create or update an existing l3-interface-ipv6-address-list
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv6-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv6-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv6-address-list
-      description: delete an existing l3-interface-ipv6-address-list
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}:
-    get:
-      tags:
-        - Network
-      summary: returns vlan
-      description: returns vlan
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceVlansVlan
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/vlan"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: vpn-id
-          in: query
-          description: This indicates the customers VPN ID associated with this vlan
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing vlan
-      description: create or update an existing vlan
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceVlansVlan
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: vlan object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/vlan"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing vlan
-      description: delete an existing vlan
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceVlansVlan
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans:
-    get:
-      tags:
-        - Network
-      summary: returns vlans
-      description: returns vlans
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceVlans
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/vlans"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceSriovVfsSriovVfRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceSriovVfsSriovVfRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}:
-    get:
-      tags:
-        - Network
-      summary: returns sriov-vf
-      description: returns sriov-vf
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceSriovVfsSriovVf
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/sriov-vf"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vf-vlan-filter
-          in: query
-          description: This metadata provides option to specify list of VLAN filters applied on VF to pass the traffic to VM.
-          required: false
-          type: string
-        - name: vf-mac-filter
-          in: query
-          description: When MAC filters are specified, VF-agent service configures VFs to do MAC level filtering before the traffic is passed to VM.
-          required: false
-          type: string
-        - name: vf-vlan-strip
-          in: query
-          description: When this field is set to true, VF will configured to strip the outer TAG before the traffic is passed to VM.
-          required: false
-          type: boolean
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing sriov-vf
-      description: create or update an existing sriov-vf
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceSriovVfsSriovVf
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: sriov-vf object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/sriov-vf"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing sriov-vf
-      description: delete an existing sriov-vf
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceSriovVfsSriovVf
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs:
-    get:
-      tags:
-        - Network
-      summary: returns sriov-vfs
-      description: returns sriov-vfs
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceSriovVfs
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/sriov-vfs"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv4-address-list
-      description: returns l3-interface-ipv4-address-list
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv4AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv4-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv4-address-list
-      description: create or update an existing l3-interface-ipv4-address-list
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv4-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv4-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv4-address-list
-      description: delete an existing l3-interface-ipv4-address-list
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv6-address-list
-      description: returns l3-interface-ipv6-address-list
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv6AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv6-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv6-address-list
-      description: create or update an existing l3-interface-ipv6-address-list
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv6-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv6-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv6-address-list
-      description: delete an existing l3-interface-ipv6-address-list
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}:
-    get:
-      tags:
-        - Network
-      summary: returns l-interface
-      description: returns l-interface
-      operationId: getNetworkVpesVpeLInterfacesLInterface
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l-interface"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l-interface
-      description: create or update an existing l-interface
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterface
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l-interface object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l-interface"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l-interface
-      description: delete an existing l-interface
-      operationId: deleteNetworkVpesVpeLInterfacesLInterface
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces:
-    get:
-      tags:
-        - Network
-      summary: returns l-interfaces
-      description: returns l-interfaces
-      operationId: getNetworkVpesVpeLInterfaces
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l-interfaces"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv4-address-list
-      description: returns l3-interface-ipv4-address-list
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv4-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: vpn-id
-          in: query
-          description: This indicates the customers VPN ID associated with this vlan
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv4-address-list
-      description: create or update an existing l3-interface-ipv4-address-list
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv4-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv4-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv4-address-list
-      description: delete an existing l3-interface-ipv4-address-list
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv6-address-list
-      description: returns l3-interface-ipv6-address-list
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv6-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: vpn-id
-          in: query
-          description: This indicates the customers VPN ID associated with this vlan
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv6-address-list
-      description: create or update an existing l3-interface-ipv6-address-list
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv6-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv6-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv6-address-list
-      description: delete an existing l3-interface-ipv6-address-list
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}:
-    get:
-      tags:
-        - Network
-      summary: returns vlan
-      description: returns vlan
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlan
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/vlan"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: vpn-id
-          in: query
-          description: This indicates the customers VPN ID associated with this vlan
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing vlan
-      description: create or update an existing vlan
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlan
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: vlan object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/vlan"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing vlan
-      description: delete an existing vlan
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlan
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans:
-    get:
-      tags:
-        - Network
-      summary: returns vlans
-      description: returns vlans
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlans
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/vlans"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceSriovVfsSriovVfRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceSriovVfsSriovVfRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}:
-    get:
-      tags:
-        - Network
-      summary: returns sriov-vf
-      description: returns sriov-vf
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceSriovVfsSriovVf
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/sriov-vf"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vf-vlan-filter
-          in: query
-          description: This metadata provides option to specify list of VLAN filters applied on VF to pass the traffic to VM.
-          required: false
-          type: string
-        - name: vf-mac-filter
-          in: query
-          description: When MAC filters are specified, VF-agent service configures VFs to do MAC level filtering before the traffic is passed to VM.
-          required: false
-          type: string
-        - name: vf-vlan-strip
-          in: query
-          description: When this field is set to true, VF will configured to strip the outer TAG before the traffic is passed to VM.
-          required: false
-          type: boolean
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing sriov-vf
-      description: create or update an existing sriov-vf
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceSriovVfsSriovVf
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: sriov-vf object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/sriov-vf"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing sriov-vf
-      description: delete an existing sriov-vf
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceSriovVfsSriovVf
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs:
-    get:
-      tags:
-        - Network
-      summary: returns sriov-vfs
-      description: returns sriov-vfs
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceSriovVfs
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/sriov-vfs"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv4-address-list
-      description: returns l3-interface-ipv4-address-list
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv4AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv4-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv4-address-list
-      description: create or update an existing l3-interface-ipv4-address-list
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv4-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv4-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv4-address-list
-      description: delete an existing l3-interface-ipv4-address-list
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv6-address-list
-      description: returns l3-interface-ipv6-address-list
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv6AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv6-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv6-address-list
-      description: create or update an existing l3-interface-ipv6-address-list
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv6-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv6-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv6-address-list
-      description: delete an existing l3-interface-ipv6-address-list
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}:
-    get:
-      tags:
-        - Network
-      summary: returns l-interface
-      description: returns l-interface
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterface
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l-interface"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l-interface
-      description: create or update an existing l-interface
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterface
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l-interface object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l-interface"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l-interface
-      description: delete an existing l-interface
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterface
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces:
-    get:
-      tags:
-        - Network
-      summary: returns l-interfaces
-      description: returns l-interfaces
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfaces
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l-interfaces"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}:
-    get:
-      tags:
-        - Network
-      summary: returns lag-interface
-      description: returns lag-interface
-      operationId: getNetworkVpesVpeLagInterfacesLagInterface
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/lag-interface"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing lag-interface
-      description: create or update an existing lag-interface
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterface
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: lag-interface object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/lag-interface"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing lag-interface
-      description: delete an existing lag-interface
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterface
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces:
-    get:
-      tags:
-        - Network
-      summary: returns lag-interfaces
-      description: returns lag-interfaces
-      operationId: getNetworkVpesVpeLagInterfaces
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/lag-interfaces"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLicensesLicenseRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the license group the resource belongs to, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of a license resource. 
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLicensesLicenseRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the license group the resource belongs to, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of a license resource. 
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}:
-    get:
-      tags:
-        - Network
-      summary: returns license
-      description: returns license
-      operationId: getNetworkVpesVpeLicensesLicense
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/license"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the license group the resource belongs to, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of a license resource. 
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing license
-      description: create or update an existing license
-      operationId: createOrUpdateNetworkVpesVpeLicensesLicense
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the license group the resource belongs to, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of a license resource. 
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: license object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/license"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing license
-      description: delete an existing license
-      operationId: deleteNetworkVpesVpeLicensesLicense
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the license group the resource belongs to, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of a license resource. 
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/licenses:
-    get:
-      tags:
-        - Network
-      summary: returns licenses
-      description: returns licenses
-      operationId: getNetworkVpesVpeLicenses
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/licenses"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeEntitlementsEntitlementRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the entitlement group the resource comes from, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of an entitlement resource. 
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeEntitlementsEntitlementRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the entitlement group the resource comes from, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of an entitlement resource. 
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}:
-    get:
-      tags:
-        - Network
-      summary: returns entitlement
-      description: returns entitlement
-      operationId: getNetworkVpesVpeEntitlementsEntitlement
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/entitlement"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the entitlement group the resource comes from, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of an entitlement resource. 
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing entitlement
-      description: create or update an existing entitlement
-      operationId: createOrUpdateNetworkVpesVpeEntitlementsEntitlement
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the entitlement group the resource comes from, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of an entitlement resource. 
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: entitlement object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/entitlement"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing entitlement
-      description: delete an existing entitlement
-      operationId: deleteNetworkVpesVpeEntitlementsEntitlement
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the entitlement group the resource comes from, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of an entitlement resource. 
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/entitlements:
-    get:
-      tags:
-        - Network
-      summary: returns entitlements
-      description: returns entitlements
-      operationId: getNetworkVpesVpeEntitlements
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/entitlements"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}:
-    get:
-      tags:
-        - Network
-      summary: returns vpe
-      description: returns vpe
-      operationId: getNetworkVpesVpe
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/vpe"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing vpe
-      description: create or update an existing vpe
-      operationId: createOrUpdateNetworkVpesVpe
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: vpe object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/vpe"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing vpe
-      description: delete an existing vpe
-      operationId: deleteNetworkVpesVpe
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes:
-    get:
-      tags:
-        - Network
-      summary: returns vpes
-      description: returns vpes
-      operationId: getNetworkVpes
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/vpes"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
   /network/vnfcs/vnfc/{vnfc-name}/relationship-list/relationship:
     put:
       tags:
@@ -43001,7 +37901,6 @@ definitions:
       ###### Related Nodes
       - TO availability-zone (Many2Many)
       - FROM complex (is composed of ctag-pool)
-      - FROM vpe
       - FROM vpls-pe
     required:
     - target-pe
@@ -43047,7 +37946,6 @@ definitions:
       - FROM pserver
       - FROM pnf
       - FROM vce
-      - FROM vpe
       - FROM vpls-pe
       - FROM volume-group
       - FROM zone
@@ -43299,7 +38197,7 @@ definitions:
       - TO l3-interface-ipv4-address-list (comprises vlan, Many2Many)
       - TO l3-interface-ipv6-address-list (comprises vlan, Many2Many)
       - TO multicast-configuration (Many2Many)
-      - TO logical-link (Many2Many, will delete target node)
+      - TO logical-link (Many2Many)
       - FROM l-interface (is composed of vlan)
       - FROM service-instance
       - FROM allotted-resource
@@ -43433,16 +38331,15 @@ definitions:
       - TO l3-interface-ipv4-address-list (comprises l-interface, Many2Many)
       - TO l3-interface-ipv6-address-list (comprises l-interface, Many2Many)
       - TO l-interface (comprises l-interface, One2Many)
-      - TO logical-link (Many2Many, will delete target node)
+      - TO logical-link (Many2Many)
       - TO vlan (comprises l-interface, Many2Many)
       - TO sriov-vf (comprises l-interface, One2One)
       - FROM generic-vnf (is composed of l-interface)
-      - FROM l-interface (is composed of l-interface)
       - FROM lag-interface (is composed of l-interface)
       - FROM newvce (is composed of l-interface)
       - FROM p-interface (is composed of l-interface)
-      - FROM vpe (is composed of l-interface)
       - FROM vserver (is composed of l-interface)
+      - FROM l-interface (is composed of l-interface)
     required:
     - interface-name
     - is-port-mirrored
@@ -43522,7 +38419,6 @@ definitions:
       ###### Related Nodes
       - TO flavor (Many2One)
       - TO image (Many2One)
-      - TO ipaddress (comprises vserver, Many2Many)
       - TO l-interface (comprises vserver, Many2Many)
       - TO pserver (Many2One)
       - TO volume (comprises vserver, Many2Many)
@@ -43532,7 +38428,6 @@ definitions:
       - FROM generic-vnf
       - FROM tenant (is composed of vserver)
       - FROM vce
-      - FROM vpe
     required:
     - vserver-id
     - vserver-name
@@ -43808,8 +38703,6 @@ definitions:
       Collection of metadatum (key/value pairs)
       ###### Default Delete Scope
       THIS_NODE_ONLY
-      ###### Related Nodes
-      - FROM image (is composed of metadata)
     properties:
       metadatum:
         type: array
@@ -43821,7 +38714,6 @@ definitions:
       ###### Default Delete Scope
       ERROR_4_IN_EDGES_OR_CASCADE
       ###### Related Nodes
-      - TO metadata (comprises image, Many2Many)
       - TO metadatum (comprises image, Many2Many)
       - FROM cloud-region (is composed of image)
       - FROM vserver
@@ -43905,7 +38797,7 @@ definitions:
           $ref: "#/definitions/relationship"
   dvs-switches:
     description: |
-      Collection of digital virtual switch metadata used for vmWare VCEs and VPEs.
+      Collection of digital virtual switch metadata used for vmWare VCEs and GenericVnfs.
     properties:
       dvs-switch:
         type: array
@@ -44001,7 +38893,7 @@ definitions:
           $ref: "#/definitions/availability-zone"
   cloud-region:
     description: |
-      cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&T's AIC.
+      cloud-region designates an installation of a cloud cluster or region or instantiation
       ###### Default Delete Scope
       THIS_NODE_ONLY
       ###### Related Nodes
@@ -44134,7 +39026,7 @@ definitions:
       CASCADE_TO_CHILDREN
       ###### Related Nodes
       - TO l-interface (comprises p-interface, Many2Many)
-      - TO physical-link (Many2Many, will delete target node)
+      - TO physical-link (Many2Many)
       - TO logical-link (Many2One)
       - FROM lag-interface
       - FROM pserver (is composed of p-interface)
@@ -44195,14 +39087,13 @@ definitions:
       ###### Default Delete Scope
       CASCADE_TO_CHILDREN
       ###### Related Nodes
-      - TO logical-link (Many2Many, will delete target node)
-      - TO lag-link (Many2Many, will delete target node)
+      - TO logical-link (Many2Many)
+      - TO lag-link (Many2Many)
       - TO p-interface (Many2Many)
       - TO l-interface (comprises lag-interface, Many2Many)
       - FROM generic-vnf (is composed of lag-interface)
       - FROM pserver (is composed of lag-interface)
       - FROM pnf (is composed of lag-interface)
-      - FROM vpe (is composed of lag-interface)
       - FROM vpls-pe (is composed of lag-interface)
     required:
     - interface-name
@@ -44594,7 +39485,7 @@ definitions:
       - TO pnf (One2Many)
       - TO connector (Many2Many)
       - TO metadatum (comprises service-instance, Many2Many)
-      - TO logical-link (Many2Many, will delete target node)
+      - TO logical-link (Many2Many)
       - TO vlan (One2Many)
       - TO service-instance (One2Many)
       - TO ctag-assignment (One2Many)
@@ -44990,8 +39881,8 @@ definitions:
       - TO model-constraint (comprises model-element, One2Many)
       - TO constrained-element-set (comprises model-element, One2Many)
       - FROM model-ver (is composed of model-element)
-      - FROM model-element (is composed of model-element)
       - FROM element-choice-set (is composed of model-element)
+      - FROM model-element (is composed of model-element)
     required:
     - model-element-uuid
     - new-data-del-flag
@@ -45309,11 +40200,11 @@ definitions:
       - TO vpn-binding (Many2Many)
       - FROM l-interface
       - FROM lag-interface
-      - FROM logical-link
       - FROM p-interface
       - FROM service-instance
       - FROM virtual-data-center
       - FROM vlan
+      - FROM logical-link
     required:
     - link-name
     - link-type
@@ -45633,7 +40524,7 @@ definitions:
         description: Trigger for operational monitoring of this VNF by BAU Service Assurance systems.
       ipv4-oam-address:
         type: string
-        description: Address tail-f uses to configure vpe, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).
+        description: Address tail-f uses to configure generic-vnf, also used for troubleshooting and is IP used for traps generated by GenericVnf (v4-loopback0-ip-address).
       equipment-role:
         type: string
         description: Client should send valid enumerated value, e.g., VPLS-PE.
@@ -45787,7 +40678,6 @@ definitions:
       ###### Related Nodes
       - FROM generic-vnf (is composed of license)
       - FROM vce (is composed of license)
-      - FROM vpe (is composed of license)
     required:
     - group-uuid
     - resource-uuid
@@ -45821,7 +40711,6 @@ definitions:
       ###### Related Nodes
       - FROM generic-vnf (is composed of entitlement)
       - FROM vce (is composed of entitlement)
-      - FROM vpe (is composed of entitlement)
     required:
     - group-uuid
     - resource-uuid
@@ -45946,120 +40835,6 @@ definitions:
         type: array
         items:          
           $ref: "#/definitions/vce"
-  vpe:
-    description: |
-      Relationship-list must include related to info for complex.
-      ###### Default Delete Scope
-      CASCADE_TO_CHILDREN
-      ###### Related Nodes
-      - TO complex (Many2Many)
-      - TO ctag-pool (Many2Many)
-      - TO l-interface (comprises vpe, Many2Many)
-      - TO lag-interface (comprises vpe, Many2Many)
-      - TO vserver (Many2Many)
-      - TO entitlement (comprises vpe, One2Many)
-      - TO license (comprises vpe, One2Many)
-    required:
-    - vnf-id
-    - vnf-name
-    - vnf-type
-    properties:
-      vnf-id:
-        type: string
-        description: Unique id of VNF.  This is unique across the graph.
-      vnf-name:
-        type: string
-        description: Name of VNF.
-      vnf-name2:
-        type: string
-        description: Alternate name of VNF.
-      vnf-type:
-        type: string
-        description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-      service-id:
-        type: string
-        description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-      regional-resource-zone:
-        type: string
-        description: Regional way of organizing pservers, source of truth should define values
-      prov-status:
-        type: string
-        description: Trigger for operational monitoring of this resource by Service Assurance systems.
-      operational-status:
-        type: string
-        description: Indicator for whether the resource is considered operational
-      license-key:
-        type: string
-        description: OBSOLETE -  do not use.  See child relationships.
-      equipment-role:
-        type: string
-        description: Client should send valid enumerated value
-      orchestration-status:
-        type: string
-        description: Orchestration status of this VNF, mastered by MSO
-      heat-stack-id:
-        type: string
-        description: Heat stack id corresponding to this instance, managed by MSO
-      mso-catalog-key:
-        type: string
-        description: Corresponds to the SDN-C catalog id used to configure this VCE
-      ipv4-oam-address:
-        type: string
-        description: Address tail-f uses to configure vpe, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).
-      ipv4-oam-gateway-address-prefix-length:
-        type: integer
-        format: int32
-        description: Prefix length for oam-address
-      ipv4-oam-gateway-address:
-        type: string
-        description: Gateway address
-      v4-loopback0-ip-address:
-        type: string
-        description: Loopback0 address
-      vlan-id-outer:
-        type: integer
-        format: int64
-        description: Temporary location for stag to get to VCE
-      as-number:
-        type: string
-        description: as-number of the VPE
-      resource-version:
-        type: string
-        description: Used for optimistic concurrency.  Must be empty on create, valid on update and delete.
-      summary-status:
-        type: string
-        description: details regarding the vpe operation, PLEASE DISCONTINUE USE OF THIS FIELD.
-      encrypted-access-flag:
-        type: boolean
-        description: indicates whether vpe access uses SSH
-      relationship-list:
-        type: array
-        items:
-          $ref: "#/definitions/relationship"
-      l-interfaces:
-        type: array
-        items:
-          $ref: "#/definitions/l-interface"
-      lag-interfaces:
-        type: array
-        items:
-          $ref: "#/definitions/lag-interface"
-      licenses:
-        type: array
-        items:
-          $ref: "#/definitions/license"
-      entitlements:
-        type: array
-        items:
-          $ref: "#/definitions/entitlement"
-  vpes:
-    description: |
-      Virtual provider edge router. In 1504, A&AI will populate this object through an M&P and tool provided to operations.
-    properties:
-      vpe:
-        type: array
-        items:          
-          $ref: "#/definitions/vpe"
   vnfc:
     description: |
       ###### Default Delete Scope
@@ -46118,7 +40893,7 @@ definitions:
   subnet:
     description: |
       ###### Default Delete Scope
-      THIS_NODE_ONLY
+      ERROR_IF_ANY_IN_EDGES
       ###### Related Nodes
       - FROM l3-interface-ipv4-address-list
       - FROM l3-interface-ipv6-address-list
@@ -46394,7 +41169,7 @@ definitions:
       ###### Related Nodes
       - TO volume-group (One2One)
       - TO l3-network (Many2Many)
-      - TO vnfc (One2Many, will delete target node)
+      - TO vnfc (One2Many)
       - FROM vserver
       - FROM generic-vnf (is composed of vf-module)
     required:
@@ -46464,6 +41239,7 @@ definitions:
       ###### Default Delete Scope
       CASCADE_TO_CHILDREN
       ###### Related Nodes
+      - TO license-key-resource (Many2Many)
       - TO l-interface (comprises generic-vnf, Many2Many)
       - TO availability-zone (Many2Many)
       - TO lag-interface (comprises generic-vnf, Many2Many)
@@ -46477,7 +41253,7 @@ definitions:
       - TO ipsec-configuration (Many2One)
       - TO vf-module (comprises generic-vnf, One2Many)
       - TO volume-group (One2Many)
-      - TO vnfc (One2Many, will delete target node)
+      - TO vnfc (One2Many)
       - TO instance-group (Many2Many)
       - TO entitlement (comprises generic-vnf, One2Many)
       - TO license (comprises generic-vnf, One2Many)
@@ -46726,10 +41502,10 @@ definitions:
         description: OBSOLETE -  do not use
       ipv4-oam-address:
         type: string
-        description: Address tail-f uses to configure vpe, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).
+        description: Address tail-f uses to configure generic-vnf, also used for troubleshooting and is IP used for traps generated by GenericVnf (v4-loopback0-ip-address).
       equipment-role:
         type: string
-        description: Client should send valid enumerated value, e.g., VPE.
+        description: Client should send valid enumerated value.
       resource-version:
         type: string
         description: Used for optimistic concurrency.  Must be empty on create, valid on update and delete.
@@ -47184,10 +41960,6 @@ definitions:
         type: array
         items:
           $ref: "#/definitions/vce"
-      vpes:
-        type: array
-        items:
-          $ref: "#/definitions/vpe"
       vnfcs:
         type: array
         items:
index fc6fe19..46a08b5 100644 (file)
@@ -429,7 +429,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -466,7 +466,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -499,7 +499,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -555,7 +555,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -592,7 +592,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -630,7 +630,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -666,7 +666,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -713,7 +713,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -756,7 +756,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -840,7 +840,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -887,7 +887,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -935,7 +935,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -1014,7 +1014,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -1056,7 +1056,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -1092,7 +1092,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -1144,7 +1144,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -1190,7 +1190,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -1247,7 +1247,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -1300,7 +1300,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -1436,7 +1436,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -1493,7 +1493,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -1549,7 +1549,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -1606,7 +1606,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -1659,7 +1659,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -1795,7 +1795,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -1852,7 +1852,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -1910,7 +1910,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -2025,7 +2025,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -2077,7 +2077,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -2130,7 +2130,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -2229,7 +2229,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -2281,7 +2281,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -2329,7 +2329,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -2453,7 +2453,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -2505,7 +2505,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -2558,7 +2558,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -2657,7 +2657,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -2704,7 +2704,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -2745,7 +2745,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -2797,7 +2797,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -2845,7 +2845,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -2965,7 +2965,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -3017,7 +3017,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -3068,7 +3068,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -3120,7 +3120,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -3168,7 +3168,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -3288,7 +3288,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -3340,7 +3340,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -3393,7 +3393,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -3492,7 +3492,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -3539,7 +3539,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -3587,7 +3587,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -3668,7 +3668,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -3747,7 +3747,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -3789,7 +3789,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -3832,7 +3832,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -3883,7 +3883,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -3920,7 +3920,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -3953,7 +3953,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4004,7 +4004,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4041,7 +4041,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4079,7 +4079,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4115,7 +4115,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4152,7 +4152,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4185,7 +4185,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4231,7 +4231,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4268,7 +4268,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4306,7 +4306,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4342,7 +4342,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4379,7 +4379,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4412,7 +4412,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4463,7 +4463,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4500,7 +4500,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4538,7 +4538,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4574,7 +4574,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4611,7 +4611,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4644,7 +4644,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4710,7 +4710,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4747,7 +4747,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4785,7 +4785,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4821,7 +4821,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4858,7 +4858,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4891,7 +4891,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4956,7 +4956,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -4997,7 +4997,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5039,7 +5039,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5102,7 +5102,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5163,7 +5163,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5200,7 +5200,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5238,7 +5238,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5274,7 +5274,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5311,7 +5311,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5344,7 +5344,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5390,7 +5390,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5427,7 +5427,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5465,7 +5465,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5501,7 +5501,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5538,7 +5538,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5571,7 +5571,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5623,7 +5623,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5660,7 +5660,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5698,7 +5698,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5734,7 +5734,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5771,7 +5771,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5804,7 +5804,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5845,7 +5845,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5882,7 +5882,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5920,7 +5920,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5956,7 +5956,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5988,7 +5988,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -5996,6 +5996,238 @@ paths:
           description: Identifier used by the vendor for the region. Second part of composite key
           required: true
           type: string
+  /cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/auth-info-items/auth-info-item/{auth-info-item-id}/relationship-list/relationship:
+    put:
+      tags:
+        - CloudInfrastructure
+      summary: see node definition for valid relationships
+      operationId: createOrUpdateCloudInfrastructureCloudRegionsCloudRegionAuthInfoItemsAuthInfoItemRelationshipListRelationship
+      consumes:
+        - application/json
+        - application/xml
+      produces:
+        - application/json
+        - application/xml
+      responses:
+        "default":
+          description: Response codes found in [response codes](https://wiki.onap.org/).
+      parameters:
+        - name: cloud-owner
+          in: path
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
+          required: true
+          type: string
+        - name: cloud-region-id
+          in: path
+          description: Identifier used by the vendor for the region. Second part of composite key
+          required: true
+          type: string
+        - name: auth-info-item-id
+          in: path
+          description: Unique ID of auth-info-item.
+          required: true
+          type: string
+        - name: body
+          in: body
+          description: relationship object that needs to be created or updated
+          required: true
+          schema:
+            $ref: "#/definitions/relationship"
+    delete:
+      tags:
+        - CloudInfrastructure
+      summary: delete an existing relationship
+      description: delete an existing relationship
+      operationId: deleteCloudInfrastructureCloudRegionsCloudRegionAuthInfoItemsAuthInfoItemRelationshipListRelationship
+      consumes:
+        - application/json
+        - application/xml
+      produces:
+        - application/json
+        - application/xml
+      responses:
+        "default":
+          description: Response codes found in [response codes](https://wiki.onap.org/).
+      parameters:
+        - name: cloud-owner
+          in: path
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
+          required: true
+          type: string
+        - name: cloud-region-id
+          in: path
+          description: Identifier used by the vendor for the region. Second part of composite key
+          required: true
+          type: string
+        - name: auth-info-item-id
+          in: path
+          description: Unique ID of auth-info-item.
+          required: true
+          type: string
+  /cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/auth-info-items/auth-info-item/{auth-info-item-id}:
+    get:
+      tags:
+        - CloudInfrastructure
+      summary: returns auth-info-item
+      description: returns auth-info-item
+      operationId: getCloudInfrastructureCloudRegionsCloudRegionAuthInfoItemsAuthInfoItem
+      produces:
+        - application/json
+        - application/xml
+      responses:
+        "200":
+          description: successful operation
+          schema:
+              $ref: "#/definitions/auth-info-item"
+        "default":
+          description: Response codes found in [response codes](https://wiki.onap.org/).
+      parameters:
+        - name: cloud-owner
+          in: path
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
+          required: true
+          type: string
+        - name: cloud-region-id
+          in: path
+          description: Identifier used by the vendor for the region. Second part of composite key
+          required: true
+          type: string
+        - name: auth-info-item-id
+          in: path
+          description: Unique ID of auth-info-item.
+          required: true
+          type: string
+        - name: cloud-type
+          in: query
+          description: Type of the cloud (e.g., openstack)
+          required: false
+          type: string
+        - name: owner-defined-type
+          in: query
+          description: Cloud-owner defined type indicator (e.g., dcp, lcp)
+          required: false
+          type: string
+        - name: username
+          in: query
+          description: user name of auth infomation to access VIM.
+          required: false
+          type: string
+        - name: auth-url
+          in: query
+          description: authentication url of the cloud.
+          required: false
+          type: string
+    put:
+      tags:
+        - CloudInfrastructure
+      summary: create or update an existing auth-info-item
+      description: create or update an existing auth-info-item
+      operationId: createOrUpdateCloudInfrastructureCloudRegionsCloudRegionAuthInfoItemsAuthInfoItem
+      consumes:
+        - application/json
+        - application/xml
+      produces:
+        - application/json
+        - application/xml
+      responses:
+        "default":
+          description: Response codes found in [response codes](https://wiki.onap.org/).
+      parameters:
+        - name: cloud-owner
+          in: path
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
+          required: true
+          type: string
+        - name: cloud-region-id
+          in: path
+          description: Identifier used by the vendor for the region. Second part of composite key
+          required: true
+          type: string
+        - name: auth-info-item-id
+          in: path
+          description: Unique ID of auth-info-item.
+          required: true
+          type: string
+        - name: body
+          in: body
+          description: auth-info-item object that needs to be created or updated
+          required: true
+          schema:
+            $ref: "#/definitions/auth-info-item"
+    delete:
+      tags:
+        - CloudInfrastructure
+      summary: delete an existing auth-info-item
+      description: delete an existing auth-info-item
+      operationId: deleteCloudInfrastructureCloudRegionsCloudRegionAuthInfoItemsAuthInfoItem
+      consumes:
+        - application/json
+        - application/xml
+      produces:
+        - application/json
+        - application/xml
+      responses:
+        "default":
+          description: Response codes found in [response codes](https://wiki.onap.org/).
+      parameters:
+        - name: cloud-owner
+          in: path
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
+          required: true
+          type: string
+        - name: cloud-region-id
+          in: path
+          description: Identifier used by the vendor for the region. Second part of composite key
+          required: true
+          type: string
+        - name: auth-info-item-id
+          in: path
+          description: Unique ID of auth-info-item.
+          required: true
+          type: string
+        - name: resource-version
+          in: query
+          description: resource-version for concurrency
+          required: true
+          type: string
+  /cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}/auth-info-items:
+    get:
+      tags:
+        - CloudInfrastructure
+      summary: returns auth-info-items
+      description: returns auth-info-items
+      operationId: getCloudInfrastructureCloudRegionsCloudRegionAuthInfoItems
+      produces:
+        - application/json
+        - application/xml
+      responses:
+        "200":
+          description: successful operation
+          schema:
+              $ref: "#/definitions/auth-info-items"
+        "default":
+          description: Response codes found in [response codes](https://wiki.onap.org/).
+      parameters:
+        - name: cloud-owner
+          in: path
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
+          required: true
+          type: string
+        - name: cloud-region-id
+          in: path
+          description: Identifier used by the vendor for the region. Second part of composite key
+          required: true
+          type: string
+        - name: cloud-type
+          in: query
+          description: Type of the cloud (e.g., openstack)
+          required: false
+          type: string
+        - name: owner-defined-type
+          in: query
+          description: Cloud-owner defined type indicator (e.g., dcp, lcp)
+          required: false
+          type: string
   /cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}:
     get:
       tags:
@@ -6016,7 +6248,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -6052,7 +6284,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -6084,7 +6316,7 @@ paths:
       parameters:
         - name: cloud-owner
           in: path
-          description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+          description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
           required: true
           type: string
         - name: cloud-region-id
@@ -11304,150 +11536,6 @@ paths:
               $ref: "#/definitions/virtual-data-centers"
         "default":
           description: Response codes found in [response codes](https://wiki.onap.org/).
-  /license-management/license-key-resources/license-key-resource/{att-uuid}/relationship-list/relationship:
-    put:
-      tags:
-        - LicenseManagement
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateLicenseManagementLicenseKeyResourcesLicenseKeyResourceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: att-uuid
-          in: path
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - LicenseManagement
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteLicenseManagementLicenseKeyResourcesLicenseKeyResourceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: att-uuid
-          in: path
-          required: true
-          type: string
-  /license-management/license-key-resources/license-key-resource/{att-uuid}:
-    get:
-      tags:
-        - LicenseManagement
-      summary: returns license-key-resource
-      description: returns license-key-resource
-      operationId: getLicenseManagementLicenseKeyResourcesLicenseKeyResource
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/license-key-resource"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: att-uuid
-          in: path
-          required: true
-          type: string
-        - name: assignment-group-uuid
-          in: query
-          required: false
-          type: string
-        - name: name
-          in: query
-          required: false
-          type: string
-    put:
-      tags:
-        - LicenseManagement
-      summary: create or update an existing license-key-resource
-      description: create or update an existing license-key-resource
-      operationId: createOrUpdateLicenseManagementLicenseKeyResourcesLicenseKeyResource
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: att-uuid
-          in: path
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: license-key-resource object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/license-key-resource"
-    delete:
-      tags:
-        - LicenseManagement
-      summary: delete an existing license-key-resource
-      description: delete an existing license-key-resource
-      operationId: deleteLicenseManagementLicenseKeyResourcesLicenseKeyResource
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: att-uuid
-          in: path
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /license-management/license-key-resources:
-    get:
-      tags:
-        - LicenseManagement
-      summary: returns license-key-resources
-      description: returns license-key-resources
-      operationId: getLicenseManagementLicenseKeyResources
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/license-key-resources"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
   /business/connectors/connector/{resource-instance-id}/relationship-list/relationship:
     put:
       tags:
@@ -39489,6 +39577,7 @@ definitions:
       - TO l3-network (Many2Many)
       - TO service-subscription (Many2Many)
       - TO vserver (comprises tenant, One2Many)
+      - FROM auth-info-item
       - FROM cloud-region (is composed of tenant)
       - FROM group-assignment
       - FROM volume-group
@@ -39897,15 +39986,64 @@ definitions:
         type: array
         items:          
           $ref: "#/definitions/availability-zone"
+  auth-info-item:
+    description: |
+      Persistent auth info.
+      ###### Related Nodes
+      - TO tenant (One2One)
+      - FROM cloud-region (is composed of auth-info-item)
+    required:
+    - auth-info-item-id
+    - cloud-domain
+    - username
+    - password
+    - auth-url
+    - ssl-cacert
+    - ssl-insecure
+    properties:
+      auth-info-item-id:
+        type: string
+        description: Unique ID of auth-info-item.
+      cloud-domain:
+        type: string
+        description: domain info for authentication.
+      username:
+        type: string
+        description: user name of auth infomation to access VIM.
+      password:
+        type: string
+        description: password of auth infomation to access VIM.
+      auth-url:
+        type: string
+        description: authentication url of the cloud.
+      ssl-cacert:
+        type: string
+        description: ca file content if enabled ssl on auth-url.
+      ssl-insecure:
+        type: boolean
+        description: Whether to verify VIM's certificate.
+      relationship-list:
+        type: array
+        items:
+          $ref: "#/definitions/relationship"
+  auth-info-items:
+    description: |
+      Collection of persistent auth information to access to VIM.
+    properties:
+      auth-info-item:
+        type: array
+        items:          
+          $ref: "#/definitions/auth-info-item"
   cloud-region:
     description: |
-      cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&T's AIC.
+      cloud-region designates an installation of a cloud cluster or region or instantiation.
       ###### Default Delete Scope
       THIS_NODE_ONLY
       ###### Related Nodes
       - TO complex (Many2One)
       - TO l3-network (Many2Many)
       - TO tenant (comprises cloud-region, One2Many)
+      - TO auth-info-item (comprises cloud-region, One2Many)
       - TO image (comprises cloud-region, One2Many)
       - TO flavor (comprises cloud-region, One2Many)
       - TO availability-zone (comprises cloud-region, One2Many)
@@ -39924,7 +40062,7 @@ definitions:
     properties:
       cloud-owner:
         type: string
-        description: Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname
+        description: Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname
       cloud-region-id:
         type: string
         description: Identifier used by the vendor for the region. Second part of composite key
@@ -39991,6 +40129,10 @@ definitions:
         type: array
         items:
           $ref: "#/definitions/relationship"
+      auth-info-items:
+        type: array
+        items:
+          $ref: "#/definitions/auth-info-item"
   cloud-regions:
     properties:
       cloud-region:
@@ -40368,56 +40510,6 @@ definitions:
         type: array
         items:
           $ref: "#/definitions/virtual-data-center"
-  license-key-resource:
-    description: |
-      OBSOLETE OBJECT:  do not use
-      ###### Related Nodes
-      - FROM generic-vnf
-    required:
-    - att-uuid
-    - assignment-group-uuid
-    properties:
-      att-uuid:
-        type: string
-      assignment-type:
-        type: string
-      assignment-status:
-        type: string
-      assignment-group-uuid:
-        type: string
-      assignment-date:
-        type: string
-      name:
-        type: string
-      model-uuid:
-        type: string
-      model-version:
-        type: string
-      license-key:
-        type: string
-      license-key-file-url:
-        type: string
-      supplier-release-list:
-        type: string
-      resource-version:
-        type: string
-        description: Used for optimistic concurrency.  Must be empty on create, valid on update and delete.
-      relationship-list:
-        type: array
-        items:
-          $ref: "#/definitions/relationship"
-  license-key-resources:
-    properties:
-      license-key-resource:
-        type: array
-        items:          
-          $ref: "#/definitions/license-key-resource"
-  license-management:
-    properties:
-      license-key-resources:
-        type: array
-        items:
-          $ref: "#/definitions/license-key-resource"
   connector:
     description: |
       Collection of resource instances used to connect a variety of disparate inventory widgets
@@ -41347,7 +41439,7 @@ definitions:
         description: Captures the units corresponding to the speed
       ip-version:
         type: string
-        description: v4, v6, or ds for dual stack (should be att-ip-version)
+        description: v4, v6, or ds for dual stack
       routing-protocol:
         type: string
         description: For example, static or BGP
@@ -43194,9 +43286,6 @@ definitions:
       cloud-infrastructure:
         type: object
         $ref: "#/definitions/cloud-infrastructure"
-      license-management:
-        type: object
-        $ref: "#/definitions/license-management"
       business:
         type: object
         $ref: "#/definitions/business"
index 14033ed..f038946 100644 (file)
@@ -20163,4462 +20163,6 @@ paths:
               $ref: "#/definitions/vces"
         "default":
           description: Response codes found in [response codes](https://wiki.onap.org/).
-  /network/vpes/vpe/{vnf-id}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceVlansVlanRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceVlansVlanRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv4-address-list
-      description: returns l3-interface-ipv4-address-list
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv4-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: vpn-id
-          in: query
-          description: This indicates the customers VPN ID associated with this vlan
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv4-address-list
-      description: create or update an existing l3-interface-ipv4-address-list
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv4-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv4-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv4-address-list
-      description: delete an existing l3-interface-ipv4-address-list
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv6-address-list
-      description: returns l3-interface-ipv6-address-list
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv6-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: vpn-id
-          in: query
-          description: This indicates the customers VPN ID associated with this vlan
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv6-address-list
-      description: create or update an existing l3-interface-ipv6-address-list
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv6-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv6-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv6-address-list
-      description: delete an existing l3-interface-ipv6-address-list
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}:
-    get:
-      tags:
-        - Network
-      summary: returns vlan
-      description: returns vlan
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceVlansVlan
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/vlan"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: vpn-id
-          in: query
-          description: This indicates the customers VPN ID associated with this vlan
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing vlan
-      description: create or update an existing vlan
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceVlansVlan
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: vlan object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/vlan"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing vlan
-      description: delete an existing vlan
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceVlansVlan
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans:
-    get:
-      tags:
-        - Network
-      summary: returns vlans
-      description: returns vlans
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceVlans
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/vlans"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceSriovVfsSriovVfRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceSriovVfsSriovVfRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}:
-    get:
-      tags:
-        - Network
-      summary: returns sriov-vf
-      description: returns sriov-vf
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceSriovVfsSriovVf
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/sriov-vf"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vf-vlan-filter
-          in: query
-          description: This metadata provides option to specify list of VLAN filters applied on VF to pass the traffic to VM.
-          required: false
-          type: string
-        - name: vf-mac-filter
-          in: query
-          description: When MAC filters are specified, VF-agent service configures VFs to do MAC level filtering before the traffic is passed to VM.
-          required: false
-          type: string
-        - name: vf-vlan-strip
-          in: query
-          description: When this field is set to true, VF will configured to strip the outer TAG before the traffic is passed to VM.
-          required: false
-          type: boolean
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing sriov-vf
-      description: create or update an existing sriov-vf
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceSriovVfsSriovVf
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: sriov-vf object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/sriov-vf"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing sriov-vf
-      description: delete an existing sriov-vf
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceSriovVfsSriovVf
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs:
-    get:
-      tags:
-        - Network
-      summary: returns sriov-vfs
-      description: returns sriov-vfs
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceSriovVfs
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/sriov-vfs"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv4-address-list
-      description: returns l3-interface-ipv4-address-list
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv4AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv4-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv4-address-list
-      description: create or update an existing l3-interface-ipv4-address-list
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv4-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv4-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv4-address-list
-      description: delete an existing l3-interface-ipv4-address-list
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv6-address-list
-      description: returns l3-interface-ipv6-address-list
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv6AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv6-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv6-address-list
-      description: create or update an existing l3-interface-ipv6-address-list
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv6-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv6-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv6-address-list
-      description: delete an existing l3-interface-ipv6-address-list
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}:
-    get:
-      tags:
-        - Network
-      summary: returns l-interface
-      description: returns l-interface
-      operationId: getNetworkVpesVpeLInterfacesLInterface
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l-interface"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l-interface
-      description: create or update an existing l-interface
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterface
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l-interface object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l-interface"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l-interface
-      description: delete an existing l-interface
-      operationId: deleteNetworkVpesVpeLInterfacesLInterface
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces:
-    get:
-      tags:
-        - Network
-      summary: returns l-interfaces
-      description: returns l-interfaces
-      operationId: getNetworkVpesVpeLInterfaces
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l-interfaces"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv4-address-list
-      description: returns l3-interface-ipv4-address-list
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv4-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: vpn-id
-          in: query
-          description: This indicates the customers VPN ID associated with this vlan
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv4-address-list
-      description: create or update an existing l3-interface-ipv4-address-list
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv4-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv4-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv4-address-list
-      description: delete an existing l3-interface-ipv4-address-list
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv6-address-list
-      description: returns l3-interface-ipv6-address-list
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv6-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: vpn-id
-          in: query
-          description: This indicates the customers VPN ID associated with this vlan
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv6-address-list
-      description: create or update an existing l3-interface-ipv6-address-list
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv6-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv6-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv6-address-list
-      description: delete an existing l3-interface-ipv6-address-list
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}:
-    get:
-      tags:
-        - Network
-      summary: returns vlan
-      description: returns vlan
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlan
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/vlan"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: vpn-id
-          in: query
-          description: This indicates the customers VPN ID associated with this vlan
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing vlan
-      description: create or update an existing vlan
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlan
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: vlan object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/vlan"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing vlan
-      description: delete an existing vlan
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlan
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans:
-    get:
-      tags:
-        - Network
-      summary: returns vlans
-      description: returns vlans
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlans
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/vlans"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceSriovVfsSriovVfRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceSriovVfsSriovVfRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}:
-    get:
-      tags:
-        - Network
-      summary: returns sriov-vf
-      description: returns sriov-vf
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceSriovVfsSriovVf
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/sriov-vf"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vf-vlan-filter
-          in: query
-          description: This metadata provides option to specify list of VLAN filters applied on VF to pass the traffic to VM.
-          required: false
-          type: string
-        - name: vf-mac-filter
-          in: query
-          description: When MAC filters are specified, VF-agent service configures VFs to do MAC level filtering before the traffic is passed to VM.
-          required: false
-          type: string
-        - name: vf-vlan-strip
-          in: query
-          description: When this field is set to true, VF will configured to strip the outer TAG before the traffic is passed to VM.
-          required: false
-          type: boolean
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing sriov-vf
-      description: create or update an existing sriov-vf
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceSriovVfsSriovVf
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: sriov-vf object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/sriov-vf"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing sriov-vf
-      description: delete an existing sriov-vf
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceSriovVfsSriovVf
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs:
-    get:
-      tags:
-        - Network
-      summary: returns sriov-vfs
-      description: returns sriov-vfs
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceSriovVfs
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/sriov-vfs"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv4-address-list
-      description: returns l3-interface-ipv4-address-list
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv4AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv4-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv4-address-list
-      description: create or update an existing l3-interface-ipv4-address-list
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv4-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv4-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv4-address-list
-      description: delete an existing l3-interface-ipv4-address-list
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv6-address-list
-      description: returns l3-interface-ipv6-address-list
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv6AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv6-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv6-address-list
-      description: create or update an existing l3-interface-ipv6-address-list
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv6-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv6-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv6-address-list
-      description: delete an existing l3-interface-ipv6-address-list
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}:
-    get:
-      tags:
-        - Network
-      summary: returns l-interface
-      description: returns l-interface
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterface
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l-interface"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l-interface
-      description: create or update an existing l-interface
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterface
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l-interface object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l-interface"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l-interface
-      description: delete an existing l-interface
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterface
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces:
-    get:
-      tags:
-        - Network
-      summary: returns l-interfaces
-      description: returns l-interfaces
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfaces
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l-interfaces"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}:
-    get:
-      tags:
-        - Network
-      summary: returns lag-interface
-      description: returns lag-interface
-      operationId: getNetworkVpesVpeLagInterfacesLagInterface
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/lag-interface"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing lag-interface
-      description: create or update an existing lag-interface
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterface
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: lag-interface object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/lag-interface"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing lag-interface
-      description: delete an existing lag-interface
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterface
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces:
-    get:
-      tags:
-        - Network
-      summary: returns lag-interfaces
-      description: returns lag-interfaces
-      operationId: getNetworkVpesVpeLagInterfaces
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/lag-interfaces"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}:
-    get:
-      tags:
-        - Network
-      summary: returns vpe
-      description: returns vpe
-      operationId: getNetworkVpesVpe
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/vpe"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service from ASDC
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing vpe
-      description: create or update an existing vpe
-      operationId: createOrUpdateNetworkVpesVpe
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: vpe object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/vpe"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing vpe
-      description: delete an existing vpe
-      operationId: deleteNetworkVpesVpe
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes:
-    get:
-      tags:
-        - Network
-      summary: returns vpes
-      description: returns vpes
-      operationId: getNetworkVpes
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/vpes"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
   /network/vnfcs/vnfc/{vnfc-name}/relationship-list/relationship:
     put:
       tags:
@@ -38262,6 +33806,10 @@ definitions:
   ctag-pool:
     description: |
       A collection of C tags (vlan tags) grouped for a specific purpose.
+      ###### Related Nodes
+      - TO availability-zone (Many2Many)
+      - FROM complex (is composed of ctag-pool)
+      - FROM vpls-pe
     required:
     - target-pe
     - availability-zone-name
@@ -38295,6 +33843,17 @@ definitions:
   complex:
     description: |
       Collection of physical locations that can house cloud-regions.
+      ###### Related Nodes
+      - TO ctag-pool (comprises complex, Many2Many)
+      - TO l3-network (Many2Many)
+      - FROM availability-zone
+      - FROM cloud-region
+      - FROM oam-network
+      - FROM pserver
+      - FROM pnf
+      - FROM vce
+      - FROM vpls-pe
+      - FROM volume-group
     required:
     - physical-location-id
     - physical-location-type
@@ -38366,6 +33925,7 @@ definitions:
       ###### Default Delete Scope
       THIS_NODE_ONLY
       ###### Related Nodes
+      - TO complex (Many2Many)
       - TO tenant (Many2Many)
       - FROM cloud-region (is composed of volume-group)
       - FROM vf-module
@@ -38533,7 +34093,8 @@ definitions:
       ###### Related Nodes
       - TO l3-interface-ipv4-address-list (comprises vlan, Many2Many)
       - TO l3-interface-ipv6-address-list (comprises vlan, Many2Many)
-      - TO logical-link (Many2Many, will delete target node)
+      - TO multicast-configuration (Many2Many)
+      - TO logical-link (One2One)
       - FROM l-interface (is composed of vlan)
       - FROM service-instance
     required:
@@ -38589,6 +34150,8 @@ definitions:
   sriov-vf:
     description: |
       SR-IOV Virtual Function (not to be confused with virtual network function)
+      ###### Related Nodes
+      - FROM l-interface (is composed of sriov-vf)
     required:
     - pci-id
     properties:
@@ -38654,10 +34217,12 @@ definitions:
       ###### Related Nodes
       - TO l3-interface-ipv4-address-list (comprises l-interface, Many2Many)
       - TO l3-interface-ipv6-address-list (comprises l-interface, Many2Many)
-      - TO logical-link (Many2Many, will delete target node)
+      - TO logical-link (Many2Many)
       - TO vlan (comprises l-interface, Many2Many)
+      - TO sriov-vf (comprises l-interface, One2One)
       - FROM generic-vnf (is composed of l-interface)
       - FROM lag-interface (is composed of l-interface)
+      - FROM newvce (is composed of l-interface)
       - FROM p-interface (is composed of l-interface)
       - FROM vserver (is composed of l-interface)
     required:
@@ -38726,7 +34291,6 @@ definitions:
       ###### Related Nodes
       - TO flavor (Many2One)
       - TO image (Many2One)
-      - TO ipaddress (comprises vserver, Many2Many)
       - TO l-interface (comprises vserver, Many2Many)
       - TO pserver (Many2One)
       - TO volume (comprises vserver, Many2Many)
@@ -38735,6 +34299,7 @@ definitions:
       - TO vf-module (Many2One)
       - FROM generic-vnf
       - FROM tenant (is composed of vserver)
+      - FROM vce
     required:
     - vserver-id
     - vserver-name
@@ -38991,7 +34556,9 @@ definitions:
       THIS_NODE_ONLY
       ###### Related Nodes
       - FROM image (is composed of metadatum)
+      - FROM model (is composed of metadatum)
       - FROM service-instance (is composed of metadatum)
+      - FROM connector (is composed of metadatum)
     required:
     - metaname
     - metaval
@@ -39008,8 +34575,6 @@ definitions:
       Collection of metadatum (key/value pairs)
       ###### Default Delete Scope
       THIS_NODE_ONLY
-      ###### Related Nodes
-      - FROM image (is composed of metadata)
     properties:
       metadatum:
         type: array
@@ -39021,7 +34586,6 @@ definitions:
       ###### Default Delete Scope
       ERROR_4_IN_EDGES_OR_CASCADE
       ###### Related Nodes
-      - TO metadata (comprises image, Many2Many)
       - TO metadatum (comprises image, Many2Many)
       - FROM cloud-region (is composed of image)
       - FROM vserver
@@ -39081,6 +34645,9 @@ definitions:
   dvs-switch:
     description: |
       Digital virtual switch metadata, used by SDN-C to configure VCEs.  A&AI needs to receive this data from the PO deployment team and administer it using the provisioningTool.sh into A&AI. 
+      ###### Related Nodes
+      - TO availability-zone (Many2Many)
+      - FROM cloud-region (is composed of dvs-switch)
     required:
     - switch-name
     - vcenter-url
@@ -39100,7 +34667,7 @@ definitions:
           $ref: "#/definitions/relationship"
   dvs-switches:
     description: |
-      Collection of digital virtual switch metadata used for vmWare VCEs and VPEs.
+      Collection of digital virtual switch metadata used for vmWare VCEs and GenericVnfs.
     properties:
       dvs-switch:
         type: array
@@ -39109,6 +34676,10 @@ definitions:
   oam-network:
     description: |
       OAM network, to be deprecated shortly.  Do not use for new purposes. 
+      ###### Related Nodes
+      - TO complex (Many2Many)
+      - TO service-capability (Many2Many)
+      - FROM cloud-region (is composed of oam-network)
     required:
     - network-uuid
     - network-name
@@ -39152,9 +34723,14 @@ definitions:
       ###### Default Delete Scope
       ERROR_IF_ANY_IN_EDGES
       ###### Related Nodes
+      - TO complex (Many2Many)
+      - TO service-capability (Many2Many)
       - FROM cloud-region (is composed of availability-zone)
+      - FROM ctag-pool
+      - FROM dvs-switch
       - FROM generic-vnf
       - FROM pserver
+      - FROM vce
     required:
     - availability-zone-name
     - hypervisor-type
@@ -39185,15 +34761,18 @@ definitions:
           $ref: "#/definitions/availability-zone"
   cloud-region:
     description: |
-      cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&T's AIC.
+      cloud-region designates an installation of a cloud cluster or region or instantiation.
       ###### Default Delete Scope
       THIS_NODE_ONLY
       ###### Related Nodes
+      - TO complex (Many2One)
       - TO l3-network (Many2Many)
       - TO tenant (comprises cloud-region, One2Many)
       - TO image (comprises cloud-region, One2Many)
       - TO flavor (comprises cloud-region, One2Many)
       - TO availability-zone (comprises cloud-region, One2Many)
+      - TO oam-network (comprises cloud-region, One2Many)
+      - TO dvs-switch (comprises cloud-region, One2Many)
       - TO volume-group (comprises cloud-region, One2Many)
       - TO group-assignment (comprises cloud-region, One2Many)
       - TO snapshot (comprises cloud-region, One2Many)
@@ -39278,6 +34857,8 @@ definitions:
   network-profile:
     description: |
       Network profile populated by SDN-GP for SNMP
+      ###### Related Nodes
+      - FROM generic-vnf
     required:
     - nm-profile-name
     properties:
@@ -39309,11 +34890,12 @@ definitions:
       CASCADE_TO_CHILDREN
       ###### Related Nodes
       - TO l-interface (comprises p-interface, Many2Many)
-      - TO physical-link (Many2Many, will delete target node)
+      - TO physical-link (Many2Many)
       - TO logical-link (Many2One)
       - FROM lag-interface
       - FROM pserver (is composed of p-interface)
       - FROM pnf (is composed of p-interface)
+      - FROM vpls-pe (is composed of p-interface)
     required:
     - interface-name
     properties:
@@ -39363,11 +34945,13 @@ definitions:
       ###### Default Delete Scope
       CASCADE_TO_CHILDREN
       ###### Related Nodes
+      - TO lag-link (Many2Many)
       - TO p-interface (Many2Many)
       - TO l-interface (comprises lag-interface, Many2Many)
       - FROM generic-vnf (is composed of lag-interface)
       - FROM pserver (is composed of lag-interface)
       - FROM pnf (is composed of lag-interface)
+      - FROM vpls-pe (is composed of lag-interface)
     required:
     - interface-name
     properties:
@@ -39405,6 +34989,7 @@ definitions:
       ###### Default Delete Scope
       ERROR_4_IN_EDGES_OR_CASCADE
       ###### Related Nodes
+      - TO complex (Many2One)
       - TO cloud-region (Many2One)
       - TO availability-zone (Many2One)
       - TO lag-interface (comprises pserver, Many2Many)
@@ -39496,6 +35081,10 @@ definitions:
   virtual-data-center:
     description: |
       Virtual organization of cloud infrastructure elements in a data center context
+      ###### Related Nodes
+      - TO generic-vnf (Many2Many)
+      - TO logical-link (Many2Many)
+      - FROM connector
     required:
     - vdc-id
     - vdc-name
@@ -39548,6 +35137,10 @@ definitions:
   connector:
     description: |
       Collection of resource instances used to connect a variety of disparate inventory widgets
+      ###### Related Nodes
+      - TO virtual-data-center (Many2Many)
+      - TO metadatum (comprises connector, Many2Many)
+      - FROM service-instance
     required:
     - resource-instance-id
     properties:
@@ -39594,14 +35187,16 @@ definitions:
       ###### Default Delete Scope
       CASCADE_TO_CHILDREN
       ###### Related Nodes
-      - TO pnf (One2Many)
+      - TO cvlan-tag (Many2Many)
+      - TO connector (Many2Many)
       - TO metadatum (comprises service-instance, Many2Many)
-      - TO logical-link (Many2Many, will delete target node)
+      - TO logical-link (Many2Many)
       - TO vlan (One2Many)
       - TO service-instance (One2Many)
       - FROM generic-vnf
       - FROM l3-network
       - FROM service-subscription (is composed of service-instance)
+      - FROM vce
       - FROM service-instance
     required:
     - service-instance-id
@@ -39759,6 +35354,8 @@ definitions:
   vnf-image:
     description: |
       Image object that pertain to a VNF that doesn't have associated vservers.  This is a kludge.
+      ###### Related Nodes
+      - FROM generic-vnf
     required:
     - vnf-image-uuid
     - application
@@ -39833,6 +35430,9 @@ definitions:
   service-capability:
     description: |
       Early definition of server/resource pairings, likely to be replaced by models.  No new use should be made of this.
+      ###### Related Nodes
+      - FROM availability-zone
+      - FROM oam-network
     required:
     - service-type
     - vnf-type
@@ -39954,11 +35554,13 @@ definitions:
       ###### Default Delete Scope
       CASCADE_TO_CHILDREN
       ###### Related Nodes
+      - TO model (Many2One)
       - TO model-element (comprises model-element, One2Many)
       - TO model-constraint (comprises model-element, One2Many)
       - TO constrained-element-set (comprises model-element, One2Many)
-      - FROM model-element (is composed of model-element)
+      - FROM model (is composed of model-element)
       - FROM element-choice-set (is composed of model-element)
+      - FROM model-element (is composed of model-element)
     required:
     - model-element-uuid
     - new-data-del-flag
@@ -40003,6 +35605,10 @@ definitions:
       ###### Default Delete Scope
       ERROR_4_IN_EDGES_OR_CASCADE
       ###### Related Nodes
+      - TO model (Many2One)
+      - TO model-element (comprises model, One2Many)
+      - TO metadatum (comprises model, One2Many)
+      - FROM model-element
       - FROM named-query
       - FROM named-query-element
     required:
@@ -40232,15 +35838,17 @@ definitions:
       ###### Default Delete Scope
       THIS_NODE_ONLY
       ###### Related Nodes
+      - TO lag-link (Many2Many)
       - TO pnf (Many2Many)
       - TO logical-link (One2Many)
       - TO generic-vnf (Many2Many)
       - TO pserver (Many2Many)
       - FROM l-interface
-      - FROM logical-link
       - FROM p-interface
       - FROM service-instance
+      - FROM virtual-data-center
       - FROM vlan
+      - FROM logical-link
     required:
     - link-name
     - link-type
@@ -40306,6 +35914,9 @@ definitions:
         items:          
           $ref: "#/definitions/logical-link"
   class-of-service:
+    description: |
+      ###### Related Nodes
+      - FROM site-pair (is composed of class-of-service)
     required:
     - cos
     properties:
@@ -40334,6 +35945,10 @@ definitions:
         items:          
           $ref: "#/definitions/class-of-service"
   site-pair:
+    description: |
+      ###### Related Nodes
+      - TO class-of-service (comprises site-pair, Many2Many)
+      - FROM routing-instance (is composed of site-pair)
     required:
     - site-pair-id
     properties:
@@ -40375,6 +35990,10 @@ definitions:
         items:          
           $ref: "#/definitions/site-pair"
   routing-instance:
+    description: |
+      ###### Related Nodes
+      - TO site-pair (comprises routing-instance, Many2Many)
+      - FROM site-pair-set (is composed of routing-instance)
     required:
     - routing-instance-id
     properties:
@@ -40406,6 +36025,9 @@ definitions:
   site-pair-set:
     description: |
       Set of instances for probes used to measure service level agreements
+      ###### Related Nodes
+      - TO routing-instance (comprises site-pair-set, Many2Many)
+      - FROM generic-vnf
     required:
     - site-pair-set-id
     properties:
@@ -40434,6 +36056,8 @@ definitions:
   vpn-binding:
     description: |
       VPN binding
+      ###### Related Nodes
+      - FROM l3-network
     required:
     - vpn-id
     - vpn-name
@@ -40468,6 +36092,11 @@ definitions:
   vpls-pe:
     description: |
       VPLS Provider Edge routers.
+      ###### Related Nodes
+      - TO complex (Many2Many)
+      - TO ctag-pool (Many2Many)
+      - TO p-interface (comprises vpls-pe, Many2Many)
+      - TO lag-interface (comprises vpls-pe, Many2Many)
     required:
     - equipment-name
     properties:
@@ -40478,7 +36107,7 @@ definitions:
         description: Trigger for operational monitoring of this VNF by BAU Service Assurance systems.
       ipv4-oam-address:
         type: string
-        description: Address tail-f uses to configure vpe, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).
+        description: Address tail-f uses to configure generic-vnf, also used for troubleshooting and is IP used for traps generated by GenericVnf (v4-loopback0-ip-address).
       equipment-role:
         type: string
         description: Client should send valid enumerated value, e.g., VPLS-PE.
@@ -40510,6 +36139,9 @@ definitions:
         items:          
           $ref: "#/definitions/vpls-pe"
   multicast-configuration:
+    description: |
+      ###### Related Nodes
+      - FROM vlan
     required:
     - multicast-configuration-id
     - multicast-protocol
@@ -40563,6 +36195,9 @@ definitions:
   port-group:
     description: |
       Used to capture the network interfaces of this VCE
+      ###### Related Nodes
+      - TO cvlan-tag (comprises port-group, Many2Many)
+      - FROM vce (is composed of port-group)
     required:
     - interface-id
     - orchestration-status
@@ -40617,6 +36252,12 @@ definitions:
   vce:
     description: |
       Virtual Customer Edge Router, used specifically for Gamma.  This object is deprecated.
+      ###### Related Nodes
+      - TO availability-zone (Many2Many)
+      - TO complex (Many2Many)
+      - TO port-group (comprises vce, Many2Many)
+      - TO vserver (Many2Many)
+      - TO service-instance (Many2Many)
     required:
     - vnf-id
     - vnf-name
@@ -40695,102 +36336,6 @@ definitions:
         type: array
         items:          
           $ref: "#/definitions/vce"
-  vpe:
-    description: |
-      Relationship-list must include related to info for complex.
-    required:
-    - vnf-id
-    - vnf-name
-    - vnf-type
-    properties:
-      vnf-id:
-        type: string
-        description: Unique id of VNF.  This is unique across the graph.
-      vnf-name:
-        type: string
-        description: Name of VNF.
-      vnf-name2:
-        type: string
-        description: Alternate name of VNF.
-      vnf-type:
-        type: string
-        description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded and clients should expect changes                  to occur in the future to this field as ASDC matures.
-      service-id:
-        type: string
-        description: Unique identifier of service from ASDC
-      regional-resource-zone:
-        type: string
-        description: Regional way of organizing pservers, source of truth should define values
-      prov-status:
-        type: string
-        description: Trigger for operational monitoring of this resource by Service Assurance systems.
-      operational-state:
-        type: string
-        description: Indicator for whether the resource is considered operational
-      license-key:
-        type: string
-        description: License key
-      equipment-role:
-        type: string
-        description: Client should send valid enumerated value
-      orchestration-status:
-        type: string
-        description: Orchestration status of this VNF, mastered by MSO
-      heat-stack-id:
-        type: string
-        description: Heat stack id corresponding to this instance, managed by MSO
-      mso-catalog-key:
-        type: string
-        description: Corresponds to the SDN-C catalog id used to configure this VCE
-      ipv4-oam-address:
-        type: string
-        description: Address tail-f uses to configure vpe, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).
-      ipv4-oam-gateway-address-prefix-length:
-        type: integer
-        format: int32
-        description: Prefix length for oam-address
-      ipv4-oam-gateway-address:
-        type: string
-        description: Gateway address
-      v4-loopback0-ip-address:
-        type: string
-        description: Loopback0 address
-      vlan-id-outer:
-        type: integer
-        format: int64
-        description: Temporary location for stag to get to VCE
-      as-number:
-        type: string
-        description: as-number of the VPE
-      resource-version:
-        type: string
-        description: Used for optimistic concurrency.  Must be empty on create, valid on update and delete.
-      summary-status:
-        type: string
-        description: details regarding the vpe operation
-      encrypted-access-flag:
-        type: boolean
-        description: indicates whether vpe access uses SSH
-      relationship-list:
-        type: array
-        items:
-          $ref: "#/definitions/relationship"
-      l-interfaces:
-        type: array
-        items:
-          $ref: "#/definitions/l-interface"
-      lag-interfaces:
-        type: array
-        items:
-          $ref: "#/definitions/lag-interface"
-  vpes:
-    description: |
-      Virtual provider edge router. In 1504, A&AI will populate this object through an M&P and tool provided to operations.
-    properties:
-      vpe:
-        type: array
-        items:          
-          $ref: "#/definitions/vpe"
   vnfc:
     description: |
       ###### Default Delete Scope
@@ -40849,7 +36394,7 @@ definitions:
   subnet:
     description: |
       ###### Default Delete Scope
-      THIS_NODE_ONLY
+      ERROR_IF_ANY_IN_EDGES
       ###### Related Nodes
       - FROM l3-interface-ipv4-address-list
       - FROM l3-interface-ipv6-address-list
@@ -40963,11 +36508,15 @@ definitions:
       ###### Default Delete Scope
       CASCADE_TO_CHILDREN
       ###### Related Nodes
+      - TO vpn-binding (Many2Many)
       - TO subnet (comprises l3-network, Many2Many)
       - TO service-instance (Many2Many)
       - TO ctag-assignment (comprises l3-network, Many2Many)
+      - TO network-policy (Many2Many)
       - TO segmentation-assignment (comprises l3-network, One2Many)
+      - TO route-table-reference (Many2Many)
       - FROM cloud-region
+      - FROM complex
       - FROM generic-vnf
       - FROM l3-interface-ipv4-address-list
       - FROM l3-interface-ipv6-address-list
@@ -41071,6 +36620,9 @@ definitions:
         items:          
           $ref: "#/definitions/l3-network"
   network-policy:
+    description: |
+      ###### Related Nodes
+      - FROM l3-network
     required:
     - network-policy-id
     properties:
@@ -41104,7 +36656,7 @@ definitions:
       ###### Related Nodes
       - TO volume-group (One2One)
       - TO l3-network (Many2Many)
-      - TO vnfc (One2Many, will delete target node)
+      - TO vnfc (One2Many)
       - FROM vserver
       - FROM generic-vnf (is composed of vf-module)
     required:
@@ -41164,16 +36716,22 @@ definitions:
       ###### Default Delete Scope
       CASCADE_TO_CHILDREN
       ###### Related Nodes
+      - TO license-key-resource (Many2Many)
       - TO l-interface (comprises generic-vnf, Many2Many)
       - TO availability-zone (Many2Many)
       - TO lag-interface (comprises generic-vnf, Many2Many)
       - TO l3-network (Many2Many)
       - TO pserver (Many2Many)
+      - TO vnf-image (Many2One)
       - TO vserver (One2Many)
       - TO service-instance (Many2Many)
+      - TO site-pair-set (Many2Many)
+      - TO network-profile (Many2Many)
+      - TO ipsec-configuration (Many2One)
       - TO vf-module (comprises generic-vnf, One2Many)
       - TO volume-group (One2Many)
-      - TO vnfc (One2Many, will delete target node)
+      - TO vnfc (One2Many)
+      - FROM virtual-data-center
       - FROM logical-link
     required:
     - vnf-id
@@ -41318,6 +36876,9 @@ definitions:
   lag-link:
     description: |
       LAG links can connect lag-interfaces
+      ###### Related Nodes
+      - FROM lag-interface
+      - FROM logical-link
     required:
     - link-name
     properties:
@@ -41342,6 +36903,8 @@ definitions:
   newvce:
     description: |
       This object fills in the gaps from vce that were incorporated into generic-vnf.  This object will be retired with vce.
+      ###### Related Nodes
+      - TO l-interface (comprises newvce, Many2Many)
     required:
     - vnf-id2
     - vnf-name
@@ -41370,10 +36933,10 @@ definitions:
         description: License key
       ipv4-oam-address:
         type: string
-        description: Address tail-f uses to configure vpe, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).
+        description: Address tail-f uses to configure generic-vnf, also used for troubleshooting and is IP used for traps generated by GenericVnf (v4-loopback0-ip-address).
       equipment-role:
         type: string
-        description: Client should send valid enumerated value, e.g., VPE.
+        description: Client should send valid enumerated value.
       resource-version:
         type: string
         description: Used for optimistic concurrency.  Must be empty on create, valid on update and delete.
@@ -41413,8 +36976,8 @@ definitions:
       ###### Related Nodes
       - TO p-interface (comprises pnf, Many2Many)
       - TO lag-interface (comprises pnf, One2Many)
+      - TO complex (Many2One)
       - FROM logical-link
-      - FROM service-instance
     required:
     - pnf-name
     - in-maint
@@ -41529,6 +37092,8 @@ definitions:
   vig-server:
     description: |
       vig-server contains information about a vig server used for IPSec-configuration. Populated by SDN-C from 1607
+      ###### Related Nodes
+      - FROM ipsec-configuration (is composed of vig-server)
     required:
     - vig-address-type
     properties:
@@ -41557,6 +37122,9 @@ definitions:
   ipsec-configuration:
     description: |
       IPSec configuration node will contain various configuration data for the NMTE VNF. This node will have an edge to the generic-vnf (vnf type = TE). Starting 1607, this data will be populated by SDN-C
+      ###### Related Nodes
+      - TO vig-server (comprises ipsec-configuration, One2Many)
+      - FROM generic-vnf
     required:
     - ipsec-configuration-id
     properties:
@@ -41643,6 +37211,8 @@ definitions:
   route-table-reference:
     description: |
       Openstack route table reference.
+      ###### Related Nodes
+      - FROM l3-network
     required:
     - route-table-reference-id
     - route-table-reference-fqdn
@@ -41696,10 +37266,6 @@ definitions:
         type: array
         items:
           $ref: "#/definitions/vce"
-      vpes:
-        type: array
-        items:
-          $ref: "#/definitions/vpe"
       vnfcs:
         type: array
         items:
index 30a6c13..6422b49 100644 (file)
@@ -22168,5106 +22168,6 @@ paths:
               $ref: "#/definitions/vces"
         "default":
           description: Response codes found in [response codes](https://wiki.onap.org/).
-  /network/vpes/vpe/{vnf-id}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceVlansVlanRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceVlansVlanRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv4-address-list
-      description: returns l3-interface-ipv4-address-list
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv4-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: vpn-id
-          in: query
-          description: This indicates the customers VPN ID associated with this vlan
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv4-address-list
-      description: create or update an existing l3-interface-ipv4-address-list
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv4-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv4-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv4-address-list
-      description: delete an existing l3-interface-ipv4-address-list
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv6-address-list
-      description: returns l3-interface-ipv6-address-list
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv6-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: vpn-id
-          in: query
-          description: This indicates the customers VPN ID associated with this vlan
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv6-address-list
-      description: create or update an existing l3-interface-ipv6-address-list
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv6-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv6-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv6-address-list
-      description: delete an existing l3-interface-ipv6-address-list
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}:
-    get:
-      tags:
-        - Network
-      summary: returns vlan
-      description: returns vlan
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceVlansVlan
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/vlan"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: vpn-id
-          in: query
-          description: This indicates the customers VPN ID associated with this vlan
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing vlan
-      description: create or update an existing vlan
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceVlansVlan
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: vlan object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/vlan"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing vlan
-      description: delete an existing vlan
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceVlansVlan
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/vlans:
-    get:
-      tags:
-        - Network
-      summary: returns vlans
-      description: returns vlans
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceVlans
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/vlans"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceSriovVfsSriovVfRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceSriovVfsSriovVfRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}:
-    get:
-      tags:
-        - Network
-      summary: returns sriov-vf
-      description: returns sriov-vf
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceSriovVfsSriovVf
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/sriov-vf"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vf-vlan-filter
-          in: query
-          description: This metadata provides option to specify list of VLAN filters applied on VF to pass the traffic to VM.
-          required: false
-          type: string
-        - name: vf-mac-filter
-          in: query
-          description: When MAC filters are specified, VF-agent service configures VFs to do MAC level filtering before the traffic is passed to VM.
-          required: false
-          type: string
-        - name: vf-vlan-strip
-          in: query
-          description: When this field is set to true, VF will configured to strip the outer TAG before the traffic is passed to VM.
-          required: false
-          type: boolean
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing sriov-vf
-      description: create or update an existing sriov-vf
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceSriovVfsSriovVf
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: sriov-vf object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/sriov-vf"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing sriov-vf
-      description: delete an existing sriov-vf
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceSriovVfsSriovVf
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/sriov-vfs:
-    get:
-      tags:
-        - Network
-      summary: returns sriov-vfs
-      description: returns sriov-vfs
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceSriovVfs
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/sriov-vfs"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv4-address-list
-      description: returns l3-interface-ipv4-address-list
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv4AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv4-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv4-address-list
-      description: create or update an existing l3-interface-ipv4-address-list
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv4-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv4-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv4-address-list
-      description: delete an existing l3-interface-ipv4-address-list
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv6-address-list
-      description: returns l3-interface-ipv6-address-list
-      operationId: getNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv6AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv6-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv6-address-list
-      description: create or update an existing l3-interface-ipv6-address-list
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv6-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv6-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv6-address-list
-      description: delete an existing l3-interface-ipv6-address-list
-      operationId: deleteNetworkVpesVpeLInterfacesLInterfaceL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces/l-interface/{interface-name}:
-    get:
-      tags:
-        - Network
-      summary: returns l-interface
-      description: returns l-interface
-      operationId: getNetworkVpesVpeLInterfacesLInterface
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l-interface"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l-interface
-      description: create or update an existing l-interface
-      operationId: createOrUpdateNetworkVpesVpeLInterfacesLInterface
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l-interface object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l-interface"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l-interface
-      description: delete an existing l-interface
-      operationId: deleteNetworkVpesVpeLInterfacesLInterface
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/l-interfaces:
-    get:
-      tags:
-        - Network
-      summary: returns l-interfaces
-      description: returns l-interfaces
-      operationId: getNetworkVpesVpeLInterfaces
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l-interfaces"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv4-address-list
-      description: returns l3-interface-ipv4-address-list
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv4-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: vpn-id
-          in: query
-          description: This indicates the customers VPN ID associated with this vlan
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv4-address-list
-      description: create or update an existing l3-interface-ipv4-address-list
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv4-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv4-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv4-address-list
-      description: delete an existing l3-interface-ipv4-address-list
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv6-address-list
-      description: returns l3-interface-ipv6-address-list
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv6-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: vpn-id
-          in: query
-          description: This indicates the customers VPN ID associated with this vlan
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv6-address-list
-      description: create or update an existing l3-interface-ipv6-address-list
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv6-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv6-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv6-address-list
-      description: delete an existing l3-interface-ipv6-address-list
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlanL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans/vlan/{vlan-interface}:
-    get:
-      tags:
-        - Network
-      summary: returns vlan
-      description: returns vlan
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlan
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/vlan"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: vpn-id
-          in: query
-          description: This indicates the customers VPN ID associated with this vlan
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing vlan
-      description: create or update an existing vlan
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlan
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: vlan object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/vlan"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing vlan
-      description: delete an existing vlan
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlansVlan
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vlan-interface
-          in: path
-          description: String that identifies the interface
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/vlans:
-    get:
-      tags:
-        - Network
-      summary: returns vlans
-      description: returns vlans
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceVlans
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/vlans"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceSriovVfsSriovVfRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceSriovVfsSriovVfRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs/sriov-vf/{pci-id}:
-    get:
-      tags:
-        - Network
-      summary: returns sriov-vf
-      description: returns sriov-vf
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceSriovVfsSriovVf
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/sriov-vf"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vf-vlan-filter
-          in: query
-          description: This metadata provides option to specify list of VLAN filters applied on VF to pass the traffic to VM.
-          required: false
-          type: string
-        - name: vf-mac-filter
-          in: query
-          description: When MAC filters are specified, VF-agent service configures VFs to do MAC level filtering before the traffic is passed to VM.
-          required: false
-          type: string
-        - name: vf-vlan-strip
-          in: query
-          description: When this field is set to true, VF will configured to strip the outer TAG before the traffic is passed to VM.
-          required: false
-          type: boolean
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing sriov-vf
-      description: create or update an existing sriov-vf
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceSriovVfsSriovVf
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: sriov-vf object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/sriov-vf"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing sriov-vf
-      description: delete an existing sriov-vf
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceSriovVfsSriovVf
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: pci-id
-          in: path
-          description: PCI ID used to identify the sriov-vf
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/sriov-vfs:
-    get:
-      tags:
-        - Network
-      summary: returns sriov-vfs
-      description: returns sriov-vfs
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceSriovVfs
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/sriov-vfs"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv4AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv4-address-list
-      description: returns l3-interface-ipv4-address-list
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv4AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv4-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv4-address-list
-      description: create or update an existing l3-interface-ipv4-address-list
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv4-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv4-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv4-address-list
-      description: delete an existing l3-interface-ipv4-address-list
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv4AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv4-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv6AddressListRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}:
-    get:
-      tags:
-        - Network
-      summary: returns l3-interface-ipv6-address-list
-      description: returns l3-interface-ipv6-address-list
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv6AddressList
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l3-interface-ipv6-address-list"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-        - name: vlan-id-inner
-          in: query
-          description: Inner VLAN tag
-          required: false
-          type: integer
-          format: int64
-        - name: neutron-network-id
-          in: query
-          description: Neutron network id of the interface that address belongs to
-          required: false
-          type: string
-        - name: neutron-subnet-id
-          in: query
-          description: Neutron id of subnet that address belongs to
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l3-interface-ipv6-address-list
-      description: create or update an existing l3-interface-ipv6-address-list
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l3-interface-ipv6-address-list object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l3-interface-ipv6-address-list"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l3-interface-ipv6-address-list
-      description: delete an existing l3-interface-ipv6-address-list
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterfaceL3InterfaceIpv6AddressList
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: l3-interface-ipv6-address
-          in: path
-          description: IP address
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces/l-interface/{interface-name}:
-    get:
-      tags:
-        - Network
-      summary: returns l-interface
-      description: returns l-interface
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterface
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l-interface"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: macaddr
-          in: query
-          description: MAC address for the interface
-          required: false
-          type: string
-        - name: network-name
-          in: query
-          description: Name of the network
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing l-interface
-      description: create or update an existing l-interface
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterface
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: l-interface object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/l-interface"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing l-interface
-      description: delete an existing l-interface
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterfaceLInterfacesLInterface
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name given to the interface
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}/l-interfaces:
-    get:
-      tags:
-        - Network
-      summary: returns l-interfaces
-      description: returns l-interfaces
-      operationId: getNetworkVpesVpeLagInterfacesLagInterfaceLInterfaces
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/l-interfaces"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces/lag-interface/{interface-name}:
-    get:
-      tags:
-        - Network
-      summary: returns lag-interface
-      description: returns lag-interface
-      operationId: getNetworkVpesVpeLagInterfacesLagInterface
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/lag-interface"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-        - name: interface-id
-          in: query
-          description: ID of interface
-          required: false
-          type: string
-        - name: interface-role
-          in: query
-          description: Role assigned to this Interface, should use values as defined in ECOMP Yang models.
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing lag-interface
-      description: create or update an existing lag-interface
-      operationId: createOrUpdateNetworkVpesVpeLagInterfacesLagInterface
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: lag-interface object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/lag-interface"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing lag-interface
-      description: delete an existing lag-interface
-      operationId: deleteNetworkVpesVpeLagInterfacesLagInterface
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: interface-name
-          in: path
-          description: Name that identifies the link aggregate interface
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/lag-interfaces:
-    get:
-      tags:
-        - Network
-      summary: returns lag-interfaces
-      description: returns lag-interfaces
-      operationId: getNetworkVpesVpeLagInterfaces
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/lag-interfaces"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeLicensesLicenseRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the license group the resource belongs to, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of a license resource. 
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeLicensesLicenseRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the license group the resource belongs to, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of a license resource. 
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/licenses/license/{group-uuid}/{resource-uuid}:
-    get:
-      tags:
-        - Network
-      summary: returns license
-      description: returns license
-      operationId: getNetworkVpesVpeLicensesLicense
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/license"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the license group the resource belongs to, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of a license resource. 
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing license
-      description: create or update an existing license
-      operationId: createOrUpdateNetworkVpesVpeLicensesLicense
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the license group the resource belongs to, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of a license resource. 
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: license object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/license"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing license
-      description: delete an existing license
-      operationId: deleteNetworkVpesVpeLicensesLicense
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the license group the resource belongs to, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of a license resource. 
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/licenses:
-    get:
-      tags:
-        - Network
-      summary: returns licenses
-      description: returns licenses
-      operationId: getNetworkVpesVpeLicenses
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/licenses"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}/relationship-list/relationship:
-    put:
-      tags:
-        - Network
-      summary: see node definition for valid relationships
-      operationId: createOrUpdateNetworkVpesVpeEntitlementsEntitlementRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the entitlement group the resource comes from, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of an entitlement resource. 
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: relationship object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/relationship"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing relationship
-      description: delete an existing relationship
-      operationId: deleteNetworkVpesVpeEntitlementsEntitlementRelationshipListRelationship
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the entitlement group the resource comes from, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of an entitlement resource. 
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/entitlements/entitlement/{group-uuid}/{resource-uuid}:
-    get:
-      tags:
-        - Network
-      summary: returns entitlement
-      description: returns entitlement
-      operationId: getNetworkVpesVpeEntitlementsEntitlement
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/entitlement"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the entitlement group the resource comes from, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of an entitlement resource. 
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing entitlement
-      description: create or update an existing entitlement
-      operationId: createOrUpdateNetworkVpesVpeEntitlementsEntitlement
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the entitlement group the resource comes from, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of an entitlement resource. 
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: entitlement object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/entitlement"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing entitlement
-      description: delete an existing entitlement
-      operationId: deleteNetworkVpesVpeEntitlementsEntitlement
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: group-uuid
-          in: path
-          description: Unique ID for the entitlement group the resource comes from, should be uuid.
-          required: true
-          type: string
-        - name: resource-uuid
-          in: path
-          description: Unique ID of an entitlement resource. 
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes/vpe/{vnf-id}/entitlements:
-    get:
-      tags:
-        - Network
-      summary: returns entitlements
-      description: returns entitlements
-      operationId: getNetworkVpesVpeEntitlements
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/entitlements"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-  /network/vpes/vpe/{vnf-id}:
-    get:
-      tags:
-        - Network
-      summary: returns vpe
-      description: returns vpe
-      operationId: getNetworkVpesVpe
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/vpe"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: vnf-name
-          in: query
-          description: Name of VNF.
-          required: false
-          type: string
-        - name: vnf-name2
-          in: query
-          description: Alternate name of VNF.
-          required: false
-          type: string
-        - name: vnf-type
-          in: query
-          description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-          required: false
-          type: string
-        - name: service-id
-          in: query
-          description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-          required: false
-          type: string
-        - name: regional-resource-zone
-          in: query
-          description: Regional way of organizing pservers, source of truth should define values
-          required: false
-          type: string
-        - name: prov-status
-          in: query
-          description: Trigger for operational monitoring of this resource by Service Assurance systems.
-          required: false
-          type: string
-        - name: heat-stack-id
-          in: query
-          description: Heat stack id corresponding to this instance, managed by MSO
-          required: false
-          type: string
-    put:
-      tags:
-        - Network
-      summary: create or update an existing vpe
-      description: create or update an existing vpe
-      operationId: createOrUpdateNetworkVpesVpe
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: body
-          in: body
-          description: vpe object that needs to be created or updated
-          required: true
-          schema:
-            $ref: "#/definitions/vpe"
-    delete:
-      tags:
-        - Network
-      summary: delete an existing vpe
-      description: delete an existing vpe
-      operationId: deleteNetworkVpesVpe
-      consumes:
-        - application/json
-        - application/xml
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
-      parameters:
-        - name: vnf-id
-          in: path
-          description: Unique id of VNF.  This is unique across the graph.
-          required: true
-          type: string
-        - name: resource-version
-          in: query
-          description: resource-version for concurrency
-          required: true
-          type: string
-  /network/vpes:
-    get:
-      tags:
-        - Network
-      summary: returns vpes
-      description: returns vpes
-      operationId: getNetworkVpes
-      produces:
-        - application/json
-        - application/xml
-      responses:
-        "200":
-          description: successful operation
-          schema:
-              $ref: "#/definitions/vpes"
-        "default":
-          description: Response codes found in [response codes](https://wiki.onap.org/).
   /network/vnfcs/vnfc/{vnfc-name}/relationship-list/relationship:
     put:
       tags:
@@ -42179,7 +37079,6 @@ definitions:
       ###### Related Nodes
       - TO availability-zone (Many2Many)
       - FROM complex (is composed of ctag-pool)
-      - FROM vpe
       - FROM vpls-pe
     required:
     - target-pe
@@ -42225,7 +37124,6 @@ definitions:
       - FROM pserver
       - FROM pnf
       - FROM vce
-      - FROM vpe
       - FROM vpls-pe
       - FROM volume-group
       - FROM zone
@@ -42475,7 +37373,7 @@ definitions:
       - TO l3-interface-ipv4-address-list (comprises vlan, Many2Many)
       - TO l3-interface-ipv6-address-list (comprises vlan, Many2Many)
       - TO multicast-configuration (Many2Many)
-      - TO logical-link (Many2Many, will delete target node)
+      - TO logical-link (Many2Many)
       - FROM l-interface (is composed of vlan)
       - FROM service-instance
       - FROM allotted-resource
@@ -42604,14 +37502,13 @@ definitions:
       ###### Related Nodes
       - TO l3-interface-ipv4-address-list (comprises l-interface, Many2Many)
       - TO l3-interface-ipv6-address-list (comprises l-interface, Many2Many)
-      - TO logical-link (Many2Many, will delete target node)
+      - TO logical-link (Many2Many)
       - TO vlan (comprises l-interface, Many2Many)
       - TO sriov-vf (comprises l-interface, One2One)
       - FROM generic-vnf (is composed of l-interface)
       - FROM lag-interface (is composed of l-interface)
       - FROM newvce (is composed of l-interface)
       - FROM p-interface (is composed of l-interface)
-      - FROM vpe (is composed of l-interface)
       - FROM vserver (is composed of l-interface)
     required:
     - interface-name
@@ -42682,7 +37579,6 @@ definitions:
       ###### Related Nodes
       - TO flavor (Many2One)
       - TO image (Many2One)
-      - TO ipaddress (comprises vserver, Many2Many)
       - TO l-interface (comprises vserver, Many2Many)
       - TO pserver (Many2One)
       - TO volume (comprises vserver, Many2Many)
@@ -42692,7 +37588,6 @@ definitions:
       - FROM generic-vnf
       - FROM tenant (is composed of vserver)
       - FROM vce
-      - FROM vpe
     required:
     - vserver-id
     - vserver-name
@@ -42968,8 +37863,6 @@ definitions:
       Collection of metadatum (key/value pairs)
       ###### Default Delete Scope
       THIS_NODE_ONLY
-      ###### Related Nodes
-      - FROM image (is composed of metadata)
     properties:
       metadatum:
         type: array
@@ -42981,7 +37874,6 @@ definitions:
       ###### Default Delete Scope
       ERROR_4_IN_EDGES_OR_CASCADE
       ###### Related Nodes
-      - TO metadata (comprises image, Many2Many)
       - TO metadatum (comprises image, Many2Many)
       - FROM cloud-region (is composed of image)
       - FROM vserver
@@ -43065,7 +37957,7 @@ definitions:
           $ref: "#/definitions/relationship"
   dvs-switches:
     description: |
-      Collection of digital virtual switch metadata used for vmWare VCEs and VPEs.
+      Collection of digital virtual switch metadata used for vmWare VCEs and GenericVnfs.
     properties:
       dvs-switch:
         type: array
@@ -43161,7 +38053,7 @@ definitions:
           $ref: "#/definitions/availability-zone"
   cloud-region:
     description: |
-      cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&T's AIC.
+      cloud-region designates an installation of a cloud cluster or region or instantiation.
       ###### Default Delete Scope
       THIS_NODE_ONLY
       ###### Related Nodes
@@ -43294,7 +38186,7 @@ definitions:
       CASCADE_TO_CHILDREN
       ###### Related Nodes
       - TO l-interface (comprises p-interface, Many2Many)
-      - TO physical-link (Many2Many, will delete target node)
+      - TO physical-link (Many2Many)
       - TO logical-link (Many2One)
       - FROM lag-interface
       - FROM pserver (is composed of p-interface)
@@ -43352,13 +38244,12 @@ definitions:
       ###### Default Delete Scope
       CASCADE_TO_CHILDREN
       ###### Related Nodes
-      - TO lag-link (Many2Many, will delete target node)
+      - TO lag-link (Many2Many)
       - TO p-interface (Many2Many)
       - TO l-interface (comprises lag-interface, Many2Many)
       - FROM generic-vnf (is composed of lag-interface)
       - FROM pserver (is composed of lag-interface)
       - FROM pnf (is composed of lag-interface)
-      - FROM vpe (is composed of lag-interface)
       - FROM vpls-pe (is composed of lag-interface)
     required:
     - interface-name
@@ -43737,7 +38628,7 @@ definitions:
       - TO pnf (One2Many)
       - TO connector (Many2Many)
       - TO metadatum (comprises service-instance, Many2Many)
-      - TO logical-link (Many2Many, will delete target node)
+      - TO logical-link (Many2Many)
       - TO vlan (One2Many)
       - TO service-instance (One2Many)
       - TO ctag-assignment (One2Many)
@@ -44133,8 +39024,8 @@ definitions:
       - TO model-constraint (comprises model-element, One2Many)
       - TO constrained-element-set (comprises model-element, One2Many)
       - FROM model-ver (is composed of model-element)
-      - FROM model-element (is composed of model-element)
       - FROM element-choice-set (is composed of model-element)
+      - FROM model-element (is composed of model-element)
     required:
     - model-element-uuid
     - new-data-del-flag
@@ -44451,11 +39342,11 @@ definitions:
       - TO cloud-region (Many2Many)
       - TO vpn-binding (Many2Many)
       - FROM l-interface
-      - FROM logical-link
       - FROM p-interface
       - FROM service-instance
       - FROM virtual-data-center
       - FROM vlan
+      - FROM logical-link
     required:
     - link-name
     - link-type
@@ -44746,7 +39637,7 @@ definitions:
         description: Trigger for operational monitoring of this VNF by BAU Service Assurance systems.
       ipv4-oam-address:
         type: string
-        description: Address tail-f uses to configure vpe, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).
+        description: Address tail-f uses to configure generic-vnf, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).
       equipment-role:
         type: string
         description: Client should send valid enumerated value, e.g., VPLS-PE.
@@ -44900,7 +39791,6 @@ definitions:
       ###### Related Nodes
       - FROM generic-vnf (is composed of license)
       - FROM vce (is composed of license)
-      - FROM vpe (is composed of license)
     required:
     - group-uuid
     - resource-uuid
@@ -44934,7 +39824,6 @@ definitions:
       ###### Related Nodes
       - FROM generic-vnf (is composed of entitlement)
       - FROM vce (is composed of entitlement)
-      - FROM vpe (is composed of entitlement)
     required:
     - group-uuid
     - resource-uuid
@@ -45059,120 +39948,6 @@ definitions:
         type: array
         items:          
           $ref: "#/definitions/vce"
-  vpe:
-    description: |
-      Relationship-list must include related to info for complex.
-      ###### Default Delete Scope
-      CASCADE_TO_CHILDREN
-      ###### Related Nodes
-      - TO complex (Many2Many)
-      - TO ctag-pool (Many2Many)
-      - TO l-interface (comprises vpe, Many2Many)
-      - TO lag-interface (comprises vpe, Many2Many)
-      - TO vserver (Many2Many)
-      - TO entitlement (comprises vpe, One2Many)
-      - TO license (comprises vpe, One2Many)
-    required:
-    - vnf-id
-    - vnf-name
-    - vnf-type
-    properties:
-      vnf-id:
-        type: string
-        description: Unique id of VNF.  This is unique across the graph.
-      vnf-name:
-        type: string
-        description: Name of VNF.
-      vnf-name2:
-        type: string
-        description: Alternate name of VNF.
-      vnf-type:
-        type: string
-        description: String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures.
-      service-id:
-        type: string
-        description: Unique identifier of service.  Does not map strictly to ASDC services.  SOON TO BE DEPRECATED
-      regional-resource-zone:
-        type: string
-        description: Regional way of organizing pservers, source of truth should define values
-      prov-status:
-        type: string
-        description: Trigger for operational monitoring of this resource by Service Assurance systems.
-      operational-state:
-        type: string
-        description: Indicator for whether the resource is considered operational
-      license-key:
-        type: string
-        description: OBSOLETE -  do not use.  See child relationships.
-      equipment-role:
-        type: string
-        description: Client should send valid enumerated value
-      orchestration-status:
-        type: string
-        description: Orchestration status of this VNF, mastered by MSO
-      heat-stack-id:
-        type: string
-        description: Heat stack id corresponding to this instance, managed by MSO
-      mso-catalog-key:
-        type: string
-        description: Corresponds to the SDN-C catalog id used to configure this VCE
-      ipv4-oam-address:
-        type: string
-        description: Address tail-f uses to configure vpe, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).
-      ipv4-oam-gateway-address-prefix-length:
-        type: integer
-        format: int32
-        description: Prefix length for oam-address
-      ipv4-oam-gateway-address:
-        type: string
-        description: Gateway address
-      v4-loopback0-ip-address:
-        type: string
-        description: Loopback0 address
-      vlan-id-outer:
-        type: integer
-        format: int64
-        description: Temporary location for stag to get to VCE
-      as-number:
-        type: string
-        description: as-number of the VPE
-      resource-version:
-        type: string
-        description: Used for optimistic concurrency.  Must be empty on create, valid on update and delete.
-      summary-status:
-        type: string
-        description: details regarding the vpe operation, PLEASE DISCONTINUE USE OF THIS FIELD.
-      encrypted-access-flag:
-        type: boolean
-        description: indicates whether vpe access uses SSH
-      relationship-list:
-        type: array
-        items:
-          $ref: "#/definitions/relationship"
-      l-interfaces:
-        type: array
-        items:
-          $ref: "#/definitions/l-interface"
-      lag-interfaces:
-        type: array
-        items:
-          $ref: "#/definitions/lag-interface"
-      licenses:
-        type: array
-        items:
-          $ref: "#/definitions/license"
-      entitlements:
-        type: array
-        items:
-          $ref: "#/definitions/entitlement"
-  vpes:
-    description: |
-      Virtual provider edge router. In 1504, A&AI will populate this object through an M&P and tool provided to operations.
-    properties:
-      vpe:
-        type: array
-        items:          
-          $ref: "#/definitions/vpe"
   vnfc:
     description: |
       ###### Default Delete Scope
@@ -45231,7 +40006,7 @@ definitions:
   subnet:
     description: |
       ###### Default Delete Scope
-      THIS_NODE_ONLY
+      ERROR_IF_ANY_IN_EDGES
       ###### Related Nodes
       - FROM l3-interface-ipv4-address-list
       - FROM l3-interface-ipv6-address-list
@@ -45503,7 +40278,7 @@ definitions:
       ###### Related Nodes
       - TO volume-group (One2One)
       - TO l3-network (Many2Many)
-      - TO vnfc (One2Many, will delete target node)
+      - TO vnfc (One2Many)
       - FROM vserver
       - FROM generic-vnf (is composed of vf-module)
     required:
@@ -45573,6 +40348,7 @@ definitions:
       ###### Default Delete Scope
       CASCADE_TO_CHILDREN
       ###### Related Nodes
+      - TO license-key-resource (Many2Many)
       - TO l-interface (comprises generic-vnf, Many2Many)
       - TO availability-zone (Many2Many)
       - TO lag-interface (comprises generic-vnf, Many2Many)
@@ -45586,7 +40362,7 @@ definitions:
       - TO ipsec-configuration (Many2One)
       - TO vf-module (comprises generic-vnf, One2Many)
       - TO volume-group (One2Many)
-      - TO vnfc (One2Many, will delete target node)
+      - TO vnfc (One2Many)
       - TO instance-group (Many2Many)
       - TO entitlement (comprises generic-vnf, One2Many)
       - TO license (comprises generic-vnf, One2Many)
@@ -45811,10 +40587,10 @@ definitions:
         description: OBSOLETE -  do not use
       ipv4-oam-address:
         type: string
-        description: Address tail-f uses to configure vpe, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).
+        description: Address tail-f uses to configure generic-vnf, also used for troubleshooting and is IP used for traps generated by VPE (v4-loopback0-ip-address).
       equipment-role:
         type: string
-        description: Client should send valid enumerated value, e.g., VPE.
+        description: Client should send valid enumerated value.
       resource-version:
         type: string
         description: Used for optimistic concurrency.  Must be empty on create, valid on update and delete.
@@ -46266,10 +41042,6 @@ definitions:
         type: array
         items:
           $ref: "#/definitions/vce"
-      vpes:
-        type: array
-        items:
-          $ref: "#/definitions/vpe"
       vnfcs:
         type: array
         items:
index e1c41a5..6dce5aa 100644 (file)
                 <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.openecomp.org.v10.RelationshipList" />
             </java-attributes>
             <xml-properties>
-                <xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&amp;Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&amp;T's AIC." />
+                <xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation" />
                 <xml-property name="indexedProps" value="cloud-owner,cloud-region-id,cloud-type,owner-defined-type" />
                 <xml-property name="nameProps" value="owner-defined-type" />
                 <xml-property name="container" value="cloud-regions" />
index d65445c..2fcb922 100644 (file)
@@ -30,7 +30,6 @@
                                <xml-element java-attribute="search" name="search" type="inventory.aai.onap.org.v11.Search" />
                                <xml-element java-attribute="actions" name="actions" type="inventory.aai.onap.org.v11.Actions" />
                                <xml-element java-attribute="cloudInfrastructure" name="cloud-infrastructure" type="inventory.aai.onap.org.v11.CloudInfrastructure" />
-                               <xml-element java-attribute="licenseManagement" name="license-management" type="inventory.aai.onap.org.v11.LicenseManagement" />
                                <xml-element java-attribute="business" name="business" type="inventory.aai.onap.org.v11.Business" />
                                <xml-element java-attribute="serviceDesignAndCreation" name="service-design-and-creation" type="inventory.aai.onap.org.v11.ServiceDesignAndCreation" />
                                <xml-element java-attribute="network" name="network" type="inventory.aai.onap.org.v11.Network" />
                        <java-attributes>
                                <xml-element java-attribute="cloudOwner" name="cloud-owner" required="true" type="java.lang.String" xml-key="true">
                                        <xml-properties>
-                                               <xml-property name="description" value="Identifies the vendor and cloud name, e.g., att-aic. First part of composite key should be formatted as vendor-cloudname" />
+                                               <xml-property name="description" value="Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname" />
                                        </xml-properties>
                                </xml-element>
                                <xml-element java-attribute="cloudRegionId" name="cloud-region-id" required="true" type="java.lang.String" xml-key="true">
                                <xml-element java-attribute="authInfoItems" name="auth-info-items" type="inventory.aai.onap.org.v11.AuthInfoItems" />
                        </java-attributes>
                        <xml-properties>
-                               <xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&amp;Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&amp;T's AIC." />
+                               <xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation." />
                                <xml-property name="indexedProps" value="cloud-owner,cloud-region-id,cloud-type,owner-defined-type" />
                                <xml-property name="nameProps" value="owner-defined-type" />
                                <xml-property name="container" value="cloud-regions" />
                        </xml-properties>
                </java-type>
 
-               <java-type name="LicenseManagement">
-                       <xml-root-element name="license-management" />
-                       <java-attributes>
-                               <xml-element java-attribute="licenseKeyResources" name="license-key-resources" type="inventory.aai.onap.org.v11.LicenseKeyResources" />
-                       </java-attributes>
-               </java-type>
-
-               <java-type name="LicenseKeyResources">
-                       <xml-root-element name="license-key-resources" />
-                       <java-attributes>
-                               <xml-element container-type="java.util.ArrayList" java-attribute="licenseKeyResource" name="license-key-resource" type="inventory.aai.onap.org.v11.LicenseKeyResource" />
-                       </java-attributes>
-               </java-type>
-
-               <java-type name="LicenseKeyResource">
-                       <xml-root-element name="license-key-resource" />
-                       <java-attributes>
-                               <xml-element java-attribute="attUuid" name="att-uuid" required="true" type="java.lang.String" xml-key="true" />
-                               <xml-element java-attribute="assignmentType" name="assignment-type" type="java.lang.String" />
-                               <xml-element java-attribute="assignmentStatus" name="assignment-status" type="java.lang.String" />
-                               <xml-element java-attribute="assignmentGroupUuid" name="assignment-group-uuid" required="true" type="java.lang.String" />
-                               <xml-element java-attribute="assignmentDate" name="assignment-date" type="java.lang.String" />
-                               <xml-element java-attribute="name" name="name" type="java.lang.String" />
-                               <xml-element java-attribute="modelUuid" name="model-uuid" type="java.lang.String" />
-                               <xml-element java-attribute="modelVersion" name="model-version" type="java.lang.String" />
-                               <xml-element java-attribute="licenseKey" name="license-key" type="java.lang.String" />
-                               <xml-element java-attribute="licenseKeyFileUrl" name="license-key-file-url" type="java.lang.String" />
-                               <xml-element container-type="java.util.ArrayList" java-attribute="supplierReleaseList" name="supplier-release-list" type="java.lang.String" />
-                               <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
-                                       <xml-properties>
-                                               <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete." />
-                                       </xml-properties>
-                               </xml-element>
-                               <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v11.RelationshipList" />
-                       </java-attributes>
-                       <xml-properties>
-                               <xml-property name="description" value="OBSOLETE OBJECT:  do not use" />
-                               <xml-property name="nameProps" value="name" />
-                               <xml-property name="indexedProps" value="assignment-group-uuid,att-uuid,name" />
-                               <xml-property name="uniqueProps" value="att-uuid" />
-                               <xml-property name="container" value="license-key-resources" />
-                               <xml-property name="namespace" value="license-management" />
-                       </xml-properties>
-               </java-type>
-
                <java-type name="Business">
                        <xml-properties>
                                <xml-property name="description" value="Namespace for business related constructs" />
                                </xml-element>
                                <xml-element java-attribute="ipVersion" name="ip-version" type="java.lang.String">
                                        <xml-properties>
-                                               <xml-property name="description" value="v4, v6, or ds for dual stack (should be att-ip-version)" />
+                                               <xml-property name="description" value="v4, v6, or ds for dual stack" />
                                        </xml-properties>
                                </xml-element>
                                <xml-element java-attribute="routingProtocol" name="routing-protocol" type="java.lang.String">
index 1adfdf8..6f64453 100644 (file)
                                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.openecomp.org.v8.RelationshipList" />
                        </java-attributes>
                        <xml-properties>
-                               <xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&amp;Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&amp;T's AIC." />
+                               <xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation." />
                                <xml-property name="indexedProps" value="cloud-owner,cloud-region-id,cloud-type,owner-defined-type" />
                                <xml-property name="nameProps" value="owner-defined-type" />
                                <xml-property name="container" value="cloud-regions" />
index 0f06166..142145c 100644 (file)
                 <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.openecomp.org.v9.RelationshipList" />
             </java-attributes>
             <xml-properties>
-                <xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation. In AT&amp;Ts AIC cloud, this could be an LCP or DCP. Cloud regions are uniquely identified by a composite key, cloud-owner + cloud-region-id. The format of the cloud-owner is vendor-cloudname and we will use att-aic for AT&amp;T's AIC." />
+                <xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation." />
                 <xml-property name="indexedProps" value="cloud-owner,cloud-region-id,cloud-type,owner-defined-type" />
                 <xml-property name="nameProps" value="owner-defined-type" />
                 <xml-property name="container" value="cloud-regions" />