b77bda09957e68d3958c867fc55889344adb4fcf
[icn/sdwan.git] /
1 // SPDX-License-Identifier: Apache-2.0
2 // Copyright (c) 2020 Intel Corporation
3
4 syntax = "proto3";
5
6 service contextupdate {
7     // Controllers
8     rpc UpdateAppContext(ContextUpdateRequest) returns (ContextUpdateResponse) {
9     }
10 }
11
12 message ContextUpdateRequest {
13     string app_context = 1;
14     string intent_name = 2;
15 }
16
17 message ContextUpdateResponse {
18     bool app_context_updated = 1;
19     string app_context_update_message = 2;
20 }