ba40893812149c1c3ad48983d0c2f0a06bb7c7b9
[dcaegen2/platform.git] / adapter / acumos / tests / fixtures / models / example-model-listofm / model.proto
1 /*-
2  * ===============LICENSE_START================================================
3  * org.onap.dcae
4  * ============================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ============================================================================
7  * This Acumos software file is distributed by AT&T and Tech Mahindra
8  * under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * This file is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ===============LICENSE_END==================================================
19  */
20
21 syntax = "proto3";
22 package QrPbKNxHnOMiIoWCyFplggLzzNUBisBm;
23
24 service Model {
25   rpc sum (ArgsList) returns (SumOut);
26 }
27
28 message ArgsList {
29   repeated Args args = 1;
30 }
31
32 message Args {
33   int64 x = 1;
34   int64 y = 2;
35 }
36
37 message SumOut {
38   repeated int64 value = 1;
39 }