diff options
author | udhaya chandran <udhayachandran.m@verizon.com> | 2019-03-21 11:50:13 +0530 |
---|---|---|
committer | udhaya chandran <udhayachandran.m@verizon.com> | 2019-03-21 20:19:23 +0530 |
commit | 05a5e4e12de0cf43c690bb4a148a615de5d86c2d (patch) | |
tree | f6efd3021c9586f24c46f3024017bde0f94f5a8e /aai-schema/src/main/resources/onap/oxm/v16 | |
parent | 85a4c19f32264bce094e8e9a35adf08e86cdd204 (diff) |
Add NFVO external-system in AAI
Change-Id: I71601180d47fe3de71ddbc07a4c54db7b398f520
Signed-off-by: udhaya Chandran <udhayachandran.m@verizon.com>
Issue-ID: AAI-2205
Diffstat (limited to 'aai-schema/src/main/resources/onap/oxm/v16')
-rw-r--r-- | aai-schema/src/main/resources/onap/oxm/v16/aai_oxm_v16.xml | 46 |
1 files changed, 45 insertions, 1 deletions
diff --git a/aai-schema/src/main/resources/onap/oxm/v16/aai_oxm_v16.xml b/aai-schema/src/main/resources/onap/oxm/v16/aai_oxm_v16.xml index 5354618..736a5f6 100644 --- a/aai-schema/src/main/resources/onap/oxm/v16/aai_oxm_v16.xml +++ b/aai-schema/src/main/resources/onap/oxm/v16/aai_oxm_v16.xml @@ -234,6 +234,7 @@ <java-attributes> <xml-element java-attribute="esrEmsList" name="esr-ems-list" type="inventory.aai.onap.org.v16.EsrEmsList"/> <xml-element java-attribute="esrVnfmList" name="esr-vnfm-list" type="inventory.aai.onap.org.v16.EsrVnfmList"/> + <xml-element java-attribute="esrNfvoList" name="esr-nfvo-list" type="inventory.aai.onap.org.v16.EsrNfvoList"/> <xml-element java-attribute="esrThirdpartySdncList" name="esr-thirdparty-sdnc-list" type="inventory.aai.onap.org.v16.EsrThirdpartySdncList"/> </java-attributes> </java-type> @@ -322,6 +323,49 @@ </xml-properties> </java-type> + <java-type name="EsrNfvoList"> + <xml-root-element name="esr-nfvo-list"/> + <java-attributes> + <xml-element container-type="java.util.ArrayList" java-attribute="esrNfvo" name="esr-nfvo" type="inventory.aai.onap.org.v16.EsrNfvo"/> + </java-attributes> + <xml-properties> + <xml-property name="maximumDepth" value="0"/> + </xml-properties> + </java-type> + + <java-type name="EsrNfvo"> + <xml-root-element name="esr-nfvo"/> + <java-attributes> + <xml-element java-attribute="nfvoId" name="nfvo-id" required="true" type="java.lang.String" xml-key="true"> + <xml-properties> + <xml-property name="description" value="Unique ID of nfvo."/> + </xml-properties> + </xml-element> + <xml-element java-attribute="apiRoot" name="api-root" type="java.lang.String"> + <xml-properties> + <xml-property name="description" value="indecate the api-root."/> + </xml-properties> + </xml-element> + <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="esrSystemInfoList" name="esr-system-info-list" type="inventory.aai.onap.org.v16.EsrSystemInfoList"/> + <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v16.RelationshipList"/> + </java-attributes> + <xml-properties> + <xml-property name="description" value="Persist NFVO address information used by VF-C."/> + <xml-property name="indexedProps" value="nfvo-id"/> + <xml-property name="searchable" value="nfvo-id"/> + <xml-property name="container" value="esr-nfvo-list"/> + <xml-property name="namespace" value="external-system"/> + <xml-property name="requiredProps" value="nfvo-id"/> + <xml-property name="uriTemplate" value="/external-system/esr-nfvo-list/esr-nfvo/{nfvo-id}"/> + </xml-properties> + </java-type> + + <java-type name="EsrThirdpartySdncList"> <xml-root-element name="esr-thirdparty-sdnc-list"/> <java-attributes> @@ -497,7 +541,7 @@ <xml-property name="indexedProps" value="esr-system-info-id,system-name,system-type"/> <xml-property name="searchable" value="esr-system-info-id,system-name,system-type"/> <xml-property name="container" value="esr-system-info-list"/> - <xml-property name="dependentOn" value="cloud-region,esr-ems,esr-vnfm,esr-thirdparty-sdnc,ext-aai-network"/> + <xml-property name="dependentOn" value="cloud-region,esr-ems,esr-vnfm,esr-thirdparty-sdnc,ext-aai-network,esr-nfvo"/> <xml-property name="requiredProps" value="esr-system-info-id,user-name,password,system-type"/> <xml-property name="uriTemplate" value="/esr-system-info-list/esr-system-info/{esr-system-info-id}"/> </xml-properties> |