summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/core
diff options
context:
space:
mode:
authordecheng zhang <decheng.zhang@huawei.com>2022-05-01 21:53:40 -0400
committerdecheng zhang <decheng.zhang@huawei.com>2022-05-05 19:04:15 -0400
commitcfa4676dc8f327449d2c7625b57b8bba628b6a08 (patch)
treebedd9ba53b8405d143cf0aa8ae65883d3bf92f1d /usecaseui-portal/src/app/core
parentf45c8fb196da87f30142424f1aeab6282496bfbc (diff)
fix: display CCVPN service information and RRO.
Issue-ID: REQ-1103 Signed-off-by: decheng zhang <decheng.zhang@huawei.com> Change-Id: Ib535004e6d0cfa668d5f532980f93057cc23ff3e Signed-off-by: decheng zhang <decheng.zhang@huawei.com>
Diffstat (limited to 'usecaseui-portal/src/app/core')
-rw-r--r--usecaseui-portal/src/app/core/services/networkHttpservice.service.ts13
1 files changed, 8 insertions, 5 deletions
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<any>(this.url["getNetworkRoutes"]);
}
+ getVpnBindingsData(){
+ return this.http.get<any>(this.url["getVpnBindings"]);
+ }
+
//Create an external cloud newwork interface
createNetwrok(paramsObj) {
return this.http.put<any>(this.url["createNetwrok"] + paramsObj["network-id"], paramsObj);