diff options
author | Dan Timoney <dtimoney@att.com> | 2020-03-19 18:59:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-03-19 18:59:03 +0000 |
commit | 9c4b183ea6d26098d64579465e781c78696ac397 (patch) | |
tree | a1d51a52aa03c83b80fe864052c96837d0623ee3 /platform-logic/restapi-templates/src/main/json | |
parent | 483c147b7f641fd5992bf726dacc1e58cce629e7 (diff) | |
parent | 30093496695c9131b270a4b41d19ec88e818e66c (diff) |
Merge "DG'S added for MDONS use case to handle cross domain service creation"
Former-commit-id: e0524603ed5d07f312fa1bdcc8ba078831c9ddfb
Diffstat (limited to 'platform-logic/restapi-templates/src/main/json')
-rw-r--r-- | platform-logic/restapi-templates/src/main/json/optical-service-create-tapi.json | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/platform-logic/restapi-templates/src/main/json/optical-service-create-tapi.json b/platform-logic/restapi-templates/src/main/json/optical-service-create-tapi.json new file mode 100644 index 00000000..610f5bd4 --- /dev/null +++ b/platform-logic/restapi-templates/src/main/json/optical-service-create-tapi.json @@ -0,0 +1,57 @@ +{ + "create-connectivity-service-input-list":[ + { + "end-point":[ + { + "local-id": ${aend-local-id}, + "layer-protocol-name":"ODU", + "connection-end-point":[ + { + "connection-end-point-uuid":${aend-cep}, + "node-edge-point-uuid": ${aend-nep}, + "node-uuid": ${aend-node-uuid}, + "topology-uuid":"otn" + } + ], + "service-interface-point":{ + "service-interface-point-uuid": ${aend-cep} + }, + "protection-role":"WORK" + }, + { + "local-id": ${zend-local-id}, + "layer-protocol-name":"ODU", + "connection-end-point":[ + { + "connection-end-point-uuid":${zend-cep}, + "node-edge-point-uuid": ${zend-nep}, + "node-uuid": ${zend-node-uuid}, + "topology-uuid":"otn" + } + ], + "service-interface-point":{ + "service-interface-point-uuid": ${zend-cep} + }, + "protection-role":"WORK" + } + ], + "layer-protocol-name":"ODU", + "connectivity-constraint":{ + "service-type":"POINT_TO_POINT_CONNECTIVITY" + }, + "routing-constraint":{ + "route-objective-function":"MIN_WORK_ROUTE_COST" + }, + "topology-constraint":[ + + ], + "name":[ + { + "value-name":"service-name", + "value": ${service-name} + } + ] + } + ] +} + |