diff options
author | Mehreen Kaleem <mehreen.kaleem@us.fujitsu.com> | 2020-03-18 07:02:34 +0000 |
---|---|---|
committer | Mehreen Kaleem <mehreen.kaleem@us.fujitsu.com> | 2020-03-18 07:03:20 +0000 |
commit | 30093496695c9131b270a4b41d19ec88e818e66c (patch) | |
tree | 9e63b57d435efd544d6dab5bc194f564972b2da7 /platform-logic/restapi-templates/src/main | |
parent | 779ea800e4a707cb856e6d5ed3d7bd263679e069 (diff) |
DG'S added for MDONS use case to handle cross domain
service creation
Change-Id: Ibb50d9c82cc6f62c58c8e85b7f088d40c2a7e30d
Issue-ID: SDNC-928
Signed-off-by: Mehreen Kaleem <mehreen.kaleem@us.fujitsu.com>
Former-commit-id: ee3ee6e27a76ef2c59da5961f0ec1572081aa0ad
Diffstat (limited to 'platform-logic/restapi-templates/src/main')
-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} + } + ] + } + ] +} + |