diff options
author | shashikanth.vh <shashikanth.vh@huawei.com> | 2018-08-07 10:27:58 +0530 |
---|---|---|
committer | Shashikanth VH <shashikanth.vh@huawei.com> | 2018-08-09 10:07:39 +0000 |
commit | c2e4e823f52c0af93e4b82ac8ea3eb346397417c (patch) | |
tree | 3821ce40f3df672923c07d923cf0a1e42f1bd735 /platform-logic/datachange/src/main/xml | |
parent | ba632f05d29e535185a3693f944dcbe6e1c2f3a8 (diff) |
Update network topology to aai
updated to use p-interface for ltp's
Change-Id: I676ad2dba4b5197a0db32c80ccf5d2f725343c53
Issue-ID: SDNC-387
Signed-off-by: shashikanth.vh <shashikanth.vh@huawei.com>
Former-commit-id: 3e371553a625d392b1feaf7f8c2a40f520386efe
Diffstat (limited to 'platform-logic/datachange/src/main/xml')
-rw-r--r-- | platform-logic/datachange/src/main/xml/DataChange_update-network-to-aai.xml | 142 |
1 files changed, 74 insertions, 68 deletions
diff --git a/platform-logic/datachange/src/main/xml/DataChange_update-network-to-aai.xml b/platform-logic/datachange/src/main/xml/DataChange_update-network-to-aai.xml index cdd0edb9..740ace01 100644 --- a/platform-logic/datachange/src/main/xml/DataChange_update-network-to-aai.xml +++ b/platform-logic/datachange/src/main/xml/DataChange_update-network-to-aai.xml @@ -1,69 +1,75 @@ -<service-logic
- xmlns='http://www.onap.org/sdnc/svclogic'
- xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='DataChange' version='${project.version}'>
- <method rpc='update-network-to-aai' mode='sync'>
- <block atomic="true">
- <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='replace' >
- <parameter name="source" value="`$network.network-id`"/>
- <parameter name="outputPath" value="tmp.network-id"/>
- <parameter name="target" value="/"/>
- <parameter name="replacement" value="-"/>
- </execute>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='zone'
- key='zone.zone-id = $tmp.network-id' >
- <parameter name='zone-id' value='`$tmp.network-id`' />
- <parameter name='zone-name' value='`$network.client-id`' />
- <parameter name='design-type' value='`$network.te-topology-id`' />
- <parameter name='zone-context' value='`$network.provider-id`' />
- </save>
- <for index='pidx' start='0' end='`$network.node_length`' >
- <set>
- <parameter name='node.' value='`$network.node[$pidx].`' />
- </set>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='pnf'
- key='pnf.pnf-name = $node.node-id' >
- <parameter name='pnf-name' value='`$node.node-id`' />
- <parameter name='pnf-id' value='`$node.node-id`' />
- <parameter name='in-maint' value='true' />
- </save>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='pnf:relationship-list'
- key='pnf.pnf-name = $node.node-id' force="true" pfx="tmp.AnAI-data">
- <parameter name="relationship-list.relationship[0].related-to" value="zone" />
- <parameter name="relationship-list.relationship[0].related-link" value="`'/network/zones/zone/' + $tmp.network-id`" />
- <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="zone.zone-id" />
- <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$tmp.network-id`" />
- </save>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='esr-thirdparty-sdnc:relationship-list'
- key='esr-thirdparty-sdnc.thirdparty-sdnc-id = $prop.sdncRestApi.thirdpartySdnc.id'
- force="true" pfx="tmp.AnAI-data">
- <parameter name="relationship-list.relationship[0].related-to" value="pnf" />
- <parameter name="relationship-list.relationship[0].related-link" value="`'/network/pnfs/pnf/' + $node.node-id`" />
- <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="pnf.pnf-name" />
- <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$node.node-id`" />
- </save>
- <for index='tidx' start='0' end='`$node.termination-point_length`' >
- <set>
- <parameter name='tp.' value='`$node.termination-point[$tidx].`' />
- </set>
- <set>
- <parameter name='unique-ltpId' value="`'nodeId-' + $node.node-id + '-ltpId-' + $tp.te-tp-id`" />
- </set>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link'
- key='logical-link.link-name = $unique-ltpId' >
- <parameter name='link-name' value='`$unique-ltpId`' />
- <parameter name='link-type' value='VL' />
- <parameter name='speed-value' value='`$tp.te.interface-switching-capability[0].max-lsp-bandwidth[0].te-bandwidth.eth-bandwidth`' />
- <parameter name='in-maint' value='`$tp.svc.supported-classification.transparent`' />
- </save>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='pnf:relationship-list'
- key='pnf.pnf-name = $node.node-id' force="true" pfx="tmp.AnAI-data">
- <parameter name="relationship-list.relationship[0].related-to" value="logical-link" />
- <parameter name="relationship-list.relationship[0].related-link" value="`'/network/logical-links/logical-link/' + $unique-ltpId`" />
- <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="logical-link.link-name" />
- <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$unique-ltpId`" />
- </save>
- </for>
- </for>
- </block>
- </method>
+<service-logic + xmlns='http://www.onap.org/sdnc/svclogic' + xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='DataChange' version='${project.version}'> + <method rpc='update-network-to-aai' mode='sync'> + <block atomic="true"> + <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='replace' > + <parameter name="source" value="`$network.network-id`"/> + <parameter name="outputPath" value="tmp.network-id"/> + <parameter name="target" value="/"/> + <parameter name="replacement" value="-"/> + </execute> + <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='network-resource' + key='network-resource.network-id = $tmp.network-id' > + <parameter name='network-id' value='`$tmp.network-id`' /> + <parameter name='client-id' value='`$network.client-id`' /> + <parameter name='te-topo-id' value='`$network.te-topology-id`' /> + <parameter name='provider-id' value='`$network.provider-id`' /> + </save> + <for index='pidx' start='0' end='`$network.node_length`' > + <set> + <parameter name='node.' value='`$network.node[$pidx].`' /> + </set> + <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='pnf' + key='network-resource.network-id = $tmp.network-id + AND pnf.pnf-name = $node.node-id' > + <parameter name='pnf-name' value='`$node.node-id`' /> + <parameter name='pnf-id' value='`$node.node-id`' /> + <parameter name='operational-status' value='`$node.te.oper-status`' /> + <parameter name='admin-status' value='`$node.te.te-node-attributes.admin-status`' /> + <parameter name='in-maint' value='true' /> + </save> + <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='pnf:relationship-list' + key='pnf.pnf-name = $node.node-id' force="true" pfx="tmp.AnAI-data"> + <parameter name="relationship-list.relationship[0].related-to" value="network-resource" /> + <parameter name="relationship-list.relationship[0].related-link" value="`'/network/network-resources/network-resource/' + $tmp.network-id`" /> + <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="network-resource.network-id" /> + <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$tmp.network-id`" /> + </save> + <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='esr-thirdparty-sdnc:relationship-list' + key='esr-thirdparty-sdnc.thirdparty-sdnc-id = $prop.sdncRestApi.thirdpartySdnc.id' + force="true" pfx="tmp.AnAI-data"> + <parameter name="relationship-list.relationship[0].related-to" value="pnf" /> + <parameter name="relationship-list.relationship[0].related-link" value="`'/network/network-resources/network-resource/' + $tmp.network-id + '/pnfs/pnf/' + $node.node-id`" /> + <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="pnf.pnf-name" /> + <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$node.node-id`" /> + </save> + <for index='tidx' start='0' end='`$node.termination-point_length`' > + <set> + <parameter name='tp.' value='`$node.termination-point[$tidx].`' /> + </set> + <set> + <parameter name='unique-ltpId' value="`'nodeId-' + $node.node-id + '-ltpId-' + $tp.te-tp-id`" /> + </set> + <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='p-interface' + key='network-resource.network-id = $tmp.network-id + AND pnf.pnf-name = $node.node-id + AND p-interface.interface-name = $unique-ltpId' > + <parameter name='network-ref' value='`$tp.supporting-termination-point[0].network-ref`' /> + <parameter name='transparent' value='`$tp.svc.supported-classification.transparent`' /> + <parameter name='speed-value' value='`$tp.te.interface-switching-capability[0].max-lsp-bandwidth[0].te-bandwidth.eth-bandwidth`' /> + <parameter name='operational-status' value='`$tp.te.oper-status`' /> + <parameter name='in-maint' value="true" /> + </save> + <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='pnf:relationship-list' + key='pnf.pnf-name = $node.node-id' force="true" pfx="tmp.AnAI-data"> + <parameter name="relationship-list.relationship[0].related-to" value="p-interface" /> + <parameter name="relationship-list.relationship[0].related-link" value="`'/network/network-resources/network-resource/' + $tmp.network-id + '/pnfs/pnf/' + $node.node-id '/p-interfaces/p-interface/' + $unique-ltpId`" /> + <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="p-interface.interface-name" /> + <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$unique-ltpId`" /> + </save> + </for> + </for> + </block> + </method> </service-logic>
\ No newline at end of file |