Merge "mecm-mepm uninstall playbook added"
[ealt-edge.git] / mecm / mepm / applcm / broker / internal / lcmservice / lcmservice.proto
1 // Copyright 2020 Huawei Technologies Co., Ltd.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //     http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 syntax = "proto3";
16
17 package lcmservice;
18
19 message InstantiateRequest {
20   oneof data {
21     string hostIp = 1;
22     bytes package = 2;
23   };
24 }
25
26 message InstantiateResponse {
27   string workloadId = 1;
28   string status = 2;
29 }
30
31 message TerminateRequest {
32    string hostIp = 1;
33    string workloadId = 2;
34 }
35
36 message TerminateResponse {
37   string status = 1;
38 }
39
40 message QueryRequest {
41    string hostIp = 1;
42    string workloadId = 2;
43 }
44
45 message QueryResponse {
46   string status = 1;
47 }
48
49 service AppLCM {
50   rpc instantiate (stream InstantiateRequest) returns (InstantiateResponse) {}
51   rpc terminate (TerminateRequest) returns (TerminateResponse) {}
52   rpc query (QueryRequest) returns (QueryResponse) {}
53 }