diff options
author | prakash.e <prakash.e@huawei.com> | 2019-03-29 11:11:47 +0530 |
---|---|---|
committer | prakash.e <prakash.e@huawei.com> | 2019-03-29 11:12:08 +0530 |
commit | 7d98f6d59a08b7c9be97f6aee15db36af7efa4d3 (patch) | |
tree | aa5c5eb6fd9fbda0424451be13535135e1e8fad6 /platform-logic/restapi-templates/src/main/json | |
parent | fa9287395328d6038cec46f3873c39eed2edd0aa (diff) |
CCVPN extension lan-port templates
lan-port - device-port, bridge-domain and ip-subnets templates
Change-Id: I94797ee8f58c8817d578a263a631ca0ac485dd26
Issue-ID: SDNC-659
Signed-off-by: Prakash.E <prakash.e@huawei.com>
Former-commit-id: 30a75914225f313fac7a40b6bc2a2d0d782fc112
Diffstat (limited to 'platform-logic/restapi-templates/src/main/json')
5 files changed, 93 insertions, 0 deletions
diff --git a/platform-logic/restapi-templates/src/main/json/sdlan-bridge-domain.json b/platform-logic/restapi-templates/src/main/json/sdlan-bridge-domain.json new file mode 100644 index 00000000..1d0f8bd1 --- /dev/null +++ b/platform-logic/restapi-templates/src/main/json/sdlan-bridge-domain.json @@ -0,0 +1,17 @@ +{ + "bridgeDomains": [ + { + "id": "", + "deviceId": ${prop.lan.deviceId}, + "ports": [ + { + "id": ${prop.lan.devicePortId}, + "tagMode": "untag" + } + ], + "vlanId": ${prop.lan.vlanId}, + "description": "spoke2 test vlan L2 port" + } + ] +} + diff --git a/platform-logic/restapi-templates/src/main/json/sdlan-ip-subnets-del.json b/platform-logic/restapi-templates/src/main/json/sdlan-ip-subnets-del.json new file mode 100644 index 00000000..4e42e61a --- /dev/null +++ b/platform-logic/restapi-templates/src/main/json/sdlan-ip-subnets-del.json @@ -0,0 +1,8 @@ +{ + "tnps": [ + { + "id": ${prop.lan.lanPortId}, + } + ] +} + diff --git a/platform-logic/restapi-templates/src/main/json/sdlan-ip-subnets.json b/platform-logic/restapi-templates/src/main/json/sdlan-ip-subnets.json new file mode 100644 index 00000000..85ccf15a --- /dev/null +++ b/platform-logic/restapi-templates/src/main/json/sdlan-ip-subnets.json @@ -0,0 +1,37 @@ +{ + "IPSubnets":[ + { + "vpnId": ${prop.vpnId}, + "siteId": ${prop.lan.siteId}, + "deviceId": ${prop.lan.deviceId}, + "id": "", + "interfaceType": "interface", + "interfaceName": "interface", + "portId": ${prop.lan.devicePortId}, + "vlanId": null, + "ipAddress": ${prop.lan.ip-address}, + "prefixLength": ${prop.lan.prefixLength}, + "vrrp": { + "enable": false, + "vrrpId": null, + "virtualIpAddress": null, + "defaultRole": null, + "preemptDelay": null + }, + "dhcp": { + "enable": false, + "dhcpServiceType": null, + "dhcpServer": null, + "dhcpRelay": null + }, + "securityZone": "trust", + "proxyArp": "false", + "attributes": { + "mtu": null, + "TCPmss": null + }, + "description": "hub1 L3 test" + } +] +} + diff --git a/platform-logic/restapi-templates/src/main/json/sdlan-port-del.json b/platform-logic/restapi-templates/src/main/json/sdlan-port-del.json new file mode 100644 index 00000000..914bb661 --- /dev/null +++ b/platform-logic/restapi-templates/src/main/json/sdlan-port-del.json @@ -0,0 +1,8 @@ +{ + "tnps": [ + { + "id": ${prop.lan.devicePortId}, + } + ] +} + diff --git a/platform-logic/restapi-templates/src/main/json/sdlan-port.json b/platform-logic/restapi-templates/src/main/json/sdlan-port.json new file mode 100644 index 00000000..a499d9a5 --- /dev/null +++ b/platform-logic/restapi-templates/src/main/json/sdlan-port.json @@ -0,0 +1,23 @@ +{ + "ports": [ + { + "id": "", + "portType": ${prop.lan.portType}, + "portNumber": ${prop.lan.portNumber}, + "deviceId": ${prop.lan.deviceId}, + "portSwitch": ${prop.lan.portSwitch}, + "linkInfo": { + "linkType": "Ethernet", + "cellular": null, + "atm": null, + "ethernet": { + "negotiationMode": "manual", + "media": "copper", + "duplex": "half", + "speed": 10 + } + } + } + ] +} + |