From 1dac51bfc12c0eb84894c5aff4c970554a42e72c Mon Sep 17 00:00:00 2001 From: liuwh7 Date: Wed, 23 Mar 2022 09:39:00 +0800 Subject: feat: modify intent instance Signed-off-by: liuwh7 Change-Id: I212e71ad60c81f8135d46eae784c558cafed6d88 Issue-ID: REQ-1075 --- usecaseui-portal/src/app/core/services/intentBase.service.ts | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'usecaseui-portal/src/app/core/services/intentBase.service.ts') diff --git a/usecaseui-portal/src/app/core/services/intentBase.service.ts b/usecaseui-portal/src/app/core/services/intentBase.service.ts index 5ee8424a..a9c4187b 100644 --- a/usecaseui-portal/src/app/core/services/intentBase.service.ts +++ b/usecaseui-portal/src/app/core/services/intentBase.service.ts @@ -32,6 +32,7 @@ export class intentBaseService { deleteIntentInstance: this.baseUrl + "/intent/deleteIntentInstance", activeIntentInstance: this.baseUrl + "/intent/activeIntentInstance", invalidIntentInstance: this.baseUrl + "/intent/invalidIntentInstance", + updateIntentInstance: this.baseUrl + "/intent/updateCCVPNInstance", queryAccessNodeInfo: this.baseUrl + "/intent/queryAccessNodeInfo", intentInstancePredict: this.baseUrl + "/intent/predict", intentBasedUnifyPredict: this.baseUrl + "/intent/unifyPredict", @@ -80,6 +81,10 @@ export class intentBaseService { return this.http.post(this.url["invalidIntentInstance"], requestBody); } + updateIntentInstance(requestBody) { + return this.http.post(this.url["updateIntentInstance"], requestBody); + } + queryAccessNodeInfo() { return this.http.get(this.url["queryAccessNodeInfo"]); } -- cgit 1.2.3-korg