From cfa4676dc8f327449d2c7625b57b8bba628b6a08 Mon Sep 17 00:00:00 2001 From: decheng zhang Date: Sun, 1 May 2022 21:53:40 -0400 Subject: fix: display CCVPN service information and RRO. Issue-ID: REQ-1103 Signed-off-by: decheng zhang Change-Id: Ib535004e6d0cfa668d5f532980f93057cc23ff3e Signed-off-by: decheng zhang --- .../src/app/core/services/networkHttpservice.service.ts | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'usecaseui-portal/src/app/core') diff --git a/usecaseui-portal/src/app/core/services/networkHttpservice.service.ts b/usecaseui-portal/src/app/core/services/networkHttpservice.service.ts index 0e16966a..77dbaffa 100644 --- a/usecaseui-portal/src/app/core/services/networkHttpservice.service.ts +++ b/usecaseui-portal/src/app/core/services/networkHttpservice.service.ts @@ -28,7 +28,7 @@ export class networkHttpservice { url = { "getNetworkD3Data": this.baseUrl+"/uui-sotn/getNetWorkResources", "getLogicalLinksData": this.baseUrl+"/uui-sotn/getLogicalLinks", - "getPnfsData": this.baseUrl+"/uui-sotn/getPnfs", + "getPnfsData": this.baseUrl+"/uui-sotn/getPnfInfo", "deleteCloud": this.baseUrl+"/uui-sotn/deleteExtNetWork", "getPInterfacesData": this.baseUrl+"/uui-sotn/getPinterfaceByPnfName/", "createLink": this.baseUrl+"/uui-sotn/createLink/", @@ -41,10 +41,9 @@ export class networkHttpservice { "createCloudLink": this.baseUrl+"/uui-sotn/createLink/", "createCloudUrl": this.baseUrl+"/uui-sotn/createHostUrl/", "deleteLink": this.baseUrl+"/uui-sotn/deleteLink/", - "getConnectivities": this.baseUrl+"/uui-sotn/getConnectivities", - "getNetworkRoutes": this.baseUrl + "/uui-sotn/getNetworkRoutes", - - + "getConnectivities": this.baseUrl+"/uui-sotn/getConnectivityInfo", + "getNetworkRoutes": this.baseUrl + "/uui-sotn/getNetworkRouteInfo", + "getVpnBindings": this.baseUrl + "/uui-sotn/getVpnBindingInfo" }; //The following APIs function are optimizable------------------------ @@ -93,6 +92,10 @@ export class networkHttpservice { return this.http.get(this.url["getNetworkRoutes"]); } + getVpnBindingsData(){ + return this.http.get(this.url["getVpnBindings"]); + } + //Create an external cloud newwork interface createNetwrok(paramsObj) { return this.http.put(this.url["createNetwrok"] + paramsObj["network-id"], paramsObj); -- cgit 1.2.3-korg