2016-08-19 15:03:53 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2018-06-04 14:19:26 +00:00
|
|
|
option go_package = "github.com/hashicorp/vault/vault";
|
|
|
|
|
|
|
|
import "helper/forwarding/types.proto";
|
2016-08-19 15:03:53 +00:00
|
|
|
|
|
|
|
package vault;
|
|
|
|
|
2017-05-24 19:06:56 +00:00
|
|
|
message EchoRequest {
|
|
|
|
string message = 1;
|
2017-10-23 18:59:37 +00:00
|
|
|
// ClusterAddr is used to send up a standby node's address to the active
|
|
|
|
// node upon heartbeat
|
2017-05-24 19:06:56 +00:00
|
|
|
string cluster_addr = 2;
|
2017-10-23 18:59:37 +00:00
|
|
|
// ClusterAddrs is used to send up a list of cluster addresses to a dr
|
|
|
|
// primary from a dr secondary
|
|
|
|
repeated string cluster_addrs = 3;
|
2019-06-20 19:14:58 +00:00
|
|
|
|
|
|
|
uint64 raft_applied_index = 4;
|
|
|
|
string raft_node_id = 5;
|
2017-05-24 19:06:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message EchoReply {
|
|
|
|
string message = 1;
|
|
|
|
repeated string cluster_addrs = 2;
|
2018-01-18 03:17:47 +00:00
|
|
|
uint32 replication_state = 3;
|
2019-06-20 19:14:58 +00:00
|
|
|
uint64 raft_applied_index = 4;
|
|
|
|
string raft_node_id = 5;
|
2017-05-24 19:06:56 +00:00
|
|
|
}
|
|
|
|
|
2018-09-18 03:03:00 +00:00
|
|
|
message ClientKey {
|
|
|
|
string type = 1;
|
|
|
|
bytes x = 2;
|
|
|
|
bytes y = 3;
|
|
|
|
bytes d = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message PerfStandbyElectionInput {}
|
|
|
|
message PerfStandbyElectionResponse {
|
|
|
|
string id = 1;
|
|
|
|
string cluster_id = 2;
|
|
|
|
string primary_cluster_addr = 3;
|
|
|
|
bytes ca_cert = 4;
|
|
|
|
bytes client_cert = 5;
|
|
|
|
ClientKey client_key = 6;
|
|
|
|
}
|
|
|
|
|
2016-08-19 15:49:25 +00:00
|
|
|
service RequestForwarding {
|
2017-01-06 22:08:43 +00:00
|
|
|
rpc ForwardRequest(forwarding.Request) returns (forwarding.Response) {}
|
2017-05-24 19:06:56 +00:00
|
|
|
rpc Echo(EchoRequest) returns (EchoReply) {}
|
2018-09-18 03:03:00 +00:00
|
|
|
rpc PerformanceStandbyElectionRequest(PerfStandbyElectionInput) returns (stream PerfStandbyElectionResponse) {}
|
2016-08-19 15:03:53 +00:00
|
|
|
}
|