diff options
author | shashikanth.vh <shashikanth.vh@huawei.com> | 2020-02-27 17:00:14 +0530 |
---|---|---|
committer | jimmy <jf2512@att.com> | 2020-03-03 13:41:04 -0500 |
commit | 8ae8a3d3543cb5b67bba762e2d2b93a6cf360d9d (patch) | |
tree | f468039faea611279c057cc0163c8137aff1eaa6 /aai-schema/src/main/resources/onap/oxm | |
parent | d911dea6146b1410d6b47b8357a905f451b85194 (diff) |
Added interlayerAttachment resource SOTN NNI usecase
Added interlayerAttachment resource to associate
overlay TP(p-interface) to underlay TTP and
edge rule.
Change-Id: Ibb5b109bc930edaa2da554a33901f812d45954f4
Issue-ID: AAI-2593
Signed-off-by: shashikanth.vh <shashikanth.vh@huawei.com>
Diffstat (limited to 'aai-schema/src/main/resources/onap/oxm')
-rw-r--r-- | aai-schema/src/main/resources/onap/oxm/v19/aai_oxm_v19.xml | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/aai-schema/src/main/resources/onap/oxm/v19/aai_oxm_v19.xml b/aai-schema/src/main/resources/onap/oxm/v19/aai_oxm_v19.xml index 6e71593..f5f243d 100644 --- a/aai-schema/src/main/resources/onap/oxm/v19/aai_oxm_v19.xml +++ b/aai-schema/src/main/resources/onap/oxm/v19/aai_oxm_v19.xml @@ -3340,6 +3340,11 @@ <xml-element java-attribute="devices" name="devices" type="inventory.aai.onap.org.v19.Devices"/> <xml-element java-attribute="wanPortConfigs" name="wan-port-configs" type="inventory.aai.onap.org.v19.WanPortConfigs"/> <xml-element java-attribute="extAaiNetworks" name="ext-aai-networks" type="inventory.aai.onap.org.v19.ExtAaiNetworks"/> + <xml-element java-attribute="labelRestrictions" name="label-restrictions" type="inventory.aai.onap.org.v19.LabelRestrictions"/> + <xml-element java-attribute="unis" name="unis" type="inventory.aai.onap.org.v19.Unis"/> + <xml-element java-attribute="teLinkAttributes" name="te-link-attributes" type="inventory.aai.onap.org.v19.TELinkAttributes"/> + <xml-element java-attribute="interlayerAttachments" name="interlayer-attachments" type="inventory.aai.onap.org.v19.InterlayerAttachments"/> + <xml-element java-attribute="tunnelTerminationPoints" name="tunnel-termination-points" type="inventory.aai.onap.org.v19.TunnelTerminationPoints"/> </java-attributes> </java-type> <java-type name="Configurations"> @@ -8770,6 +8775,75 @@ </xml-properties> </java-type> + <java-type name="InterlayerAttachments"> + <xml-properties> + <xml-property name="description" value="Collection of interlayer topology connectivities."/> + </xml-properties> + <xml-root-element name="interlayer-attachments"/> + <java-attributes> + <xml-element container-type="java.util.ArrayList" java-attribute="interlayerAttachment" name="interlayer-attachment" type="inventory.aai.onap.org.v19.InterlayerAttachment"/> + </java-attributes> + </java-type> + <java-type name="InterlayerAttachment"> + <xml-root-element name="interlayer-attachment"/> + <java-attributes> + <xml-element java-attribute="id" name="id" required="true" type="java.lang.String" xml-key="true"> + <xml-properties> + <xml-property name="description" value="Id that identifies the interlayer topology attachment"/> + </xml-properties> + </xml-element> + <xml-element java-attribute="interLayerLockId" name="inter-layer-lockId" required="true" type="java.lang.Integer"> + <xml-properties> + <xml-property name="description" value="Inter layer lock id"/> + </xml-properties> + </xml-element> + <xml-element java-attribute="selflink" name="selflink" type="java.lang.String"> + <xml-properties> + <xml-property name="description" value="Store the link to get more information for this object."/> + </xml-properties> + </xml-element> + <xml-element java-attribute="modelCustomizationId" name="model-customization-id" type="java.lang.String"> + <xml-properties> + <xml-property name="description" value="Store the model-customization-id for this object."/> + </xml-properties> + </xml-element> + <xml-element java-attribute="modelInvariantId" name="model-invariant-id" type="java.lang.String"> + <xml-properties> + <xml-property name="description" value="the ASDC model id for this resource or service model."/> + <xml-property name="visibility" value="deployment"/> + <xml-property name="requires" value="model-version-id"/> + <xml-property name="dbAlias" value="model-invariant-id-local"/> + </xml-properties> + </xml-element> + <xml-element java-attribute="modelVersionId" name="model-version-id" type="java.lang.String"> + <xml-properties> + <xml-property name="description" value="the ASDC model version for this resource or service model."/> + <xml-property name="visibility" value="deployment"/> + <xml-property name="requires" value="model-invariant-id"/> + <xml-property name="dbAlias" value="model-version-id-local"/> + <xml-property name="privateEdge" value="service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}"/> + </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="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v19.RelationshipList"/> + </java-attributes> + <xml-properties> + <xml-property name="description" value="Instance of an inter layer topology attachment"/> + <xml-property name="indexedProps" value="id,model-invariant-id,model-version-id"/> + <xml-property name="searchable" value="id"/> + <xml-property name="uniqueProps" value="id"/> + <xml-property name="container" value="interlayer-attachments"/> + <xml-property name="namespace" value="network"/> + <xml-property name="requiredProps" value="id"/> + <xml-property name="uriTemplate" value="/network/interlayer-attachments/interlayer-attachment/{id}"/> + + </xml-properties> + </java-type> + <java-type name="TELinkAttributes"> <xml-properties> <xml-property name="description" value="Collection of TE link attributes."/> |