diff options
author | Bharath Thiruveedula <bharath.thiruveedula@verizon.com> | 2019-03-21 18:20:46 +0530 |
---|---|---|
committer | Bharath Thiruveedula <bharath.thiruveedula@verizon.com> | 2019-03-25 14:15:13 +0530 |
commit | ed711ae3ce17c0d19f2ab7e999d4966a96dde516 (patch) | |
tree | 1120683fc621a08804b9a92698e1c1fb8794dbaa /usecaseui-portal/src/app/myhttp.service.ts | |
parent | 8ca667af29ce93f5b801ccfafbf6d14e55640300 (diff) |
Add dropdown to select NFVO
Change-Id: I2a38e4f148f19340d1e799fe6d989efca6a418c2
Issue-ID: USECASEUI-241
Depends-on: I3f3c638cd01921e0aeaa8d55423d89f83d0f7337
Signed-off-by: Bharath Thiruveedula <bharath.thiruveedula@verizon.com>
Co-Authored-By: Sirisha Gopigiri <sirisha.gopigiri@verizon.com>
Diffstat (limited to 'usecaseui-portal/src/app/myhttp.service.ts')
-rw-r--r-- | usecaseui-portal/src/app/myhttp.service.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usecaseui-portal/src/app/myhttp.service.ts b/usecaseui-portal/src/app/myhttp.service.ts index 753c05f6..199c99e7 100644 --- a/usecaseui-portal/src/app/myhttp.service.ts +++ b/usecaseui-portal/src/app/myhttp.service.ts @@ -26,6 +26,7 @@ export class MyhttpService { url = { listSortMasters:this.baseUrl+"/listSortMasters", customers: this.baseUrl + "/uui-lcm/customers", + orchestrators: this.baseUrl + "/uui-lcm/orchestrators", serviceType: this.baseUrl + "/uui-lcm/customers/" + "*_*" + "/service-subscriptions", servicesTableData: this.baseUrl + '/uui-lcm/service-instances', serviceTemplates: this.baseUrl + "/uui-lcm/service-templates", @@ -67,6 +68,11 @@ export class MyhttpService { return this.http.get<any>(this.url.customers); } + // Get all Orchestrators + getAllOrchestrators() { + return this.http.get<any>(this.url.orchestrators); + } + // Get relevant serviceType getServiceTypes(customer) { let url = this.url.serviceType.replace("*_*", customer.id); |