summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/core/services/networkHttpservice.service.ts
diff options
context:
space:
mode:
Diffstat (limited to 'usecaseui-portal/src/app/core/services/networkHttpservice.service.ts')
-rw-r--r--usecaseui-portal/src/app/core/services/networkHttpservice.service.ts7
1 files changed, 6 insertions, 1 deletions
diff --git a/usecaseui-portal/src/app/core/services/networkHttpservice.service.ts b/usecaseui-portal/src/app/core/services/networkHttpservice.service.ts
index 77dbaffa..d558d489 100644
--- a/usecaseui-portal/src/app/core/services/networkHttpservice.service.ts
+++ b/usecaseui-portal/src/app/core/services/networkHttpservice.service.ts
@@ -43,7 +43,8 @@ export class networkHttpservice {
"deleteLink": this.baseUrl+"/uui-sotn/deleteLink/",
"getConnectivities": this.baseUrl+"/uui-sotn/getConnectivityInfo",
"getNetworkRoutes": this.baseUrl + "/uui-sotn/getNetworkRouteInfo",
- "getVpnBindings": this.baseUrl + "/uui-sotn/getVpnBindingInfo"
+ "getVpnBindings": this.baseUrl + "/uui-sotn/getVpnBindingInfo",
+ "getUnis": this.baseUrl + "/uui-sotn/getUniInfo"
};
//The following APIs function are optimizable------------------------
@@ -96,6 +97,10 @@ export class networkHttpservice {
return this.http.get<any>(this.url["getVpnBindings"]);
}
+ getUnisData(){
+ return this.http.get<any>(this.url["getUnis"]);
+ }
+
//Create an external cloud newwork interface
createNetwrok(paramsObj) {
return this.http.put<any>(this.url["createNetwrok"] + paramsObj["network-id"], paramsObj);