mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
25 lines
628 B
Protocol Buffer
25 lines
628 B
Protocol Buffer
syntax = "proto3";
|
|
package etcdserverpb;
|
|
|
|
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
|
|
import "etcdserver.proto";
|
|
import "rpc.proto";
|
|
|
|
option (gogoproto.marshaler_all) = true;
|
|
option (gogoproto.sizer_all) = true;
|
|
option (gogoproto.unmarshaler_all) = true;
|
|
option (gogoproto.goproto_getters_all) = false;
|
|
|
|
// An InternalRaftRequest is the union of all requests which can be
|
|
// sent via raft.
|
|
message InternalRaftRequest {
|
|
option (gogoproto.onlyone) = true;
|
|
oneof value {
|
|
Request v2 = 1;
|
|
RangeRequest range = 2;
|
|
PutRequest put = 3;
|
|
DeleteRangeRequest delete_range = 4;
|
|
TxnRequest txn = 5;
|
|
}
|
|
}
|