diff options
Diffstat (limited to 'platform-logic/restapi-templates/src/main/json/sdwan-tenant-zte-add.json')
-rw-r--r-- | platform-logic/restapi-templates/src/main/json/sdwan-tenant-zte-add.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/platform-logic/restapi-templates/src/main/json/sdwan-tenant-zte-add.json b/platform-logic/restapi-templates/src/main/json/sdwan-tenant-zte-add.json new file mode 100644 index 00000000..ed6161b8 --- /dev/null +++ b/platform-logic/restapi-templates/src/main/json/sdwan-tenant-zte-add.json @@ -0,0 +1,17 @@ +{ + "routes": [ + { + "id": ${prop.route.id}, + "vpnId": ${prop.vpnId}, + "siteId": ${prop.route.siteId}, + "deviceId": ${prop.route.deviceId}, + "destinationAddressMask": ${prop.route.providerIpAddress}, + "priority": 60, + "nextHopType": "ip-address", + "ipAddress": ${prop.route.ipAddress}, + "track": false, + "target": null + } + ] +} + |