blob: 4944d84552f9823d9dad45fe461824b6c1a4f5ff [file] [log] [blame]
Jian Li841a8b92017-11-23 01:31:22 +09001/*
2 * Copyright 2017-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Jian Lif5cebc12017-11-21 17:08:17 +090016syntax="proto3";
17option java_package = "org.onosproject.grpc.nb.mastership";
18
19package nb.mastership;
20
21import "net/MastershipRoleProto.proto";
22import "cluster/RoleInfoProto.proto";
23import "cluster/NodeIdProto.proto";
24
25message getLocalRoleRequest {
26 string device_id = 1;
27}
28
29message getLocalRoleReply {
30 .net.MastershipRoleProto mastership_role = 1;
31}
32
33message isLocalMasterRequest {
34 string device_id = 1;
35}
36
37message isLocalMasterReply {
38 bool is_local_master = 1;
39}
40
41message requestRoleForSyncRequest {
42 string device_id = 1;
43}
44
45message requestRoleForSyncReply {
46 .net.MastershipRoleProto mastership_role = 1;
47}
48
49message relinquishMastershipSyncRequest {
50 string device_id = 1;
51}
52
53message relinquishMastershipSyncReply {
54}
55
56message getMasterForRequest {
57 string device_id = 1;
58}
59
60message getMasterForReply {
61 .cluster.NodeIdProto node_id = 1;
62}
63
64message getNodesForRequest {
65 string device_id = 1;
66}
67
68message getNodesForReply {
69 .cluster.RoleInfoProto role_info = 1;
70}
71
72service MastershipService {
73 rpc getLocalRole(getLocalRoleRequest) returns (getLocalRoleReply) {}
74 rpc isLocalMaster(isLocalMasterRequest) returns (isLocalMasterReply) {}
75 rpc requestRoleForSync(requestRoleForSyncRequest) returns (requestRoleForSyncReply) {}
76 rpc relinquishMastershipSync(relinquishMastershipSyncRequest) returns (relinquishMastershipSyncReply) {}
77 rpc getMasterFor(getMasterForRequest) returns (getMasterForReply) {}
78 rpc getNodesFor(getNodesForRequest) returns (getNodesForReply) {}
79}