diff options
author | guochuyicmri <guochuyi@chinamobile.com> | 2018-11-15 14:24:51 +0800 |
---|---|---|
committer | guochuyicmri <guochuyi@chinamobile.com> | 2018-11-15 14:25:12 +0800 |
commit | 5efb94a84946a5ea254f0fa91cd6f149373bd046 (patch) | |
tree | ceb4dc92b70b2a2458c8c7fe2e569b8b557daae0 /usecaseui-portal/src/app/networkHttpservice.service.ts | |
parent | ffb300e069c38e96245ad06dba908558c68ac9a1 (diff) |
Support OTN Domain Management
Change-Id: I5553a15a7fb5a2e58dd8cb61782db06c90a62f87
Issue-ID: USECASEUI-178
Signed-off-by: guochuyicmri <guochuyi@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/networkHttpservice.service.ts')
-rw-r--r-- | usecaseui-portal/src/app/networkHttpservice.service.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/usecaseui-portal/src/app/networkHttpservice.service.ts b/usecaseui-portal/src/app/networkHttpservice.service.ts index 0c86040a..74e52c5a 100644 --- a/usecaseui-portal/src/app/networkHttpservice.service.ts +++ b/usecaseui-portal/src/app/networkHttpservice.service.ts @@ -49,6 +49,7 @@ export class networkHttpservice { "createLink":this.baseUrl + "createLink/", "querySpecificLinkInfo":this.baseUrl + "getSpecificLogicalLink/", "queryCloudUrl":this.baseUrl + "getHostUrl/", + "queryExtAAIIdVersion":this.baseUrl + "getExtAaiId/", "createNetwrok":this.baseUrl + "createTopoNetwork/", "createPnf":this.baseUrl + "createPnf/", "createTp":this.baseUrl + "pnf/", @@ -84,6 +85,9 @@ export class networkHttpservice { queryCloudUrl(aaiId){ return this.http.get<any>(this.url["queryCloudUrl"]+aaiId); } + queryExtAAIIdVersion(aaiId){ + return this.http.get<any>(this.url["queryExtAAIIdVersion"]+aaiId); + } //Create an external cloud newwork interface createNetwrok(paramsObj){ return this.http.put<any>(this.url["createNetwrok"]+paramsObj["network-resource"]["network-id"],paramsObj); |