functional-tester/tester: add "heartbeat-interval", "election-timeout"

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
This commit is contained in:
Gyuho Lee
2018-04-05 10:37:16 -07:00
parent 32c34b582a
commit 451395449a
4 changed files with 289 additions and 181 deletions

View File

@@ -24,15 +24,22 @@ var etcdFields = []string{
"Name",
"DataDir",
"WALDir",
"HeartbeatIntervalMs",
"ElectionTimeoutMs",
"ListenClientURLs",
"AdvertiseClientURLs",
"ListenPeerURLs",
"InitialAdvertisePeerURLs",
"InitialCluster",
"InitialClusterState",
"InitialClusterToken",
"SnapshotCount",
"QuotaBackendBytes",
"PreVote",
"InitialCorruptCheck",
}

View File

@@ -24,6 +24,8 @@ func TestEtcdFlags(t *testing.T) {
Name: "s1",
DataDir: "/tmp/etcd-agent-data-1/etcd.data",
WALDir: "/tmp/etcd-agent-data-1/etcd.data/member/wal",
HeartbeatIntervalMs: 100,
ElectionTimeoutMs: 1000,
ListenClientURLs: []string{"127.0.0.1:1379"},
AdvertiseClientURLs: []string{"127.0.0.1:13790"},
ListenPeerURLs: []string{"127.0.0.1:1380"},
@@ -40,6 +42,8 @@ func TestEtcdFlags(t *testing.T) {
"--name=s1",
"--data-dir=/tmp/etcd-agent-data-1/etcd.data",
"--wal-dir=/tmp/etcd-agent-data-1/etcd.data/member/wal",
"--heartbeat-interval=100",
"--election-timeout=1000",
"--listen-client-urls=127.0.0.1:1379",
"--advertise-client-urls=127.0.0.1:13790",
"--listen-peer-urls=127.0.0.1:1380",

View File

@@ -208,20 +208,26 @@ func (x StressType) String() string {
func (StressType) EnumDescriptor() ([]byte, []int) { return fileDescriptorRpc, []int{2} }
type Etcd struct {
Name string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty" yaml:"name"`
DataDir string `protobuf:"bytes,2,opt,name=DataDir,proto3" json:"DataDir,omitempty" yaml:"data-dir"`
WALDir string `protobuf:"bytes,3,opt,name=WALDir,proto3" json:"WALDir,omitempty" yaml:"wal-dir"`
ListenClientURLs []string `protobuf:"bytes,4,rep,name=ListenClientURLs" json:"ListenClientURLs,omitempty" yaml:"listen-client-urls"`
AdvertiseClientURLs []string `protobuf:"bytes,5,rep,name=AdvertiseClientURLs" json:"AdvertiseClientURLs,omitempty" yaml:"advertise-client-urls"`
ListenPeerURLs []string `protobuf:"bytes,6,rep,name=ListenPeerURLs" json:"ListenPeerURLs,omitempty" yaml:"listen-peer-urls"`
InitialAdvertisePeerURLs []string `protobuf:"bytes,7,rep,name=InitialAdvertisePeerURLs" json:"InitialAdvertisePeerURLs,omitempty" yaml:"initial-advertise-peer-urls"`
InitialCluster string `protobuf:"bytes,8,opt,name=InitialCluster,proto3" json:"InitialCluster,omitempty" yaml:"initial-cluster"`
InitialClusterState string `protobuf:"bytes,9,opt,name=InitialClusterState,proto3" json:"InitialClusterState,omitempty" yaml:"initial-cluster-state"`
InitialClusterToken string `protobuf:"bytes,10,opt,name=InitialClusterToken,proto3" json:"InitialClusterToken,omitempty" yaml:"initial-cluster-token"`
SnapshotCount int64 `protobuf:"varint,11,opt,name=SnapshotCount,proto3" json:"SnapshotCount,omitempty" yaml:"snapshot-count"`
QuotaBackendBytes int64 `protobuf:"varint,12,opt,name=QuotaBackendBytes,proto3" json:"QuotaBackendBytes,omitempty" yaml:"quota-backend-bytes"`
PreVote bool `protobuf:"varint,13,opt,name=PreVote,proto3" json:"PreVote,omitempty" yaml:"pre-vote"`
InitialCorruptCheck bool `protobuf:"varint,14,opt,name=InitialCorruptCheck,proto3" json:"InitialCorruptCheck,omitempty" yaml:"initial-corrupt-check"`
Name string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty" yaml:"name"`
DataDir string `protobuf:"bytes,2,opt,name=DataDir,proto3" json:"DataDir,omitempty" yaml:"data-dir"`
WALDir string `protobuf:"bytes,3,opt,name=WALDir,proto3" json:"WALDir,omitempty" yaml:"wal-dir"`
// HeartbeatIntervalMs is the time (in milliseconds) of a heartbeat interval.
// Default value is 100, which is 100ms.
HeartbeatIntervalMs int64 `protobuf:"varint,11,opt,name=HeartbeatIntervalMs,proto3" json:"HeartbeatIntervalMs,omitempty" yaml:"heartbeat-interval"`
// ElectionTimeoutMs is the time (in milliseconds) for an election to timeout.
// Default value is 1000, which is 1s.
ElectionTimeoutMs int64 `protobuf:"varint,12,opt,name=ElectionTimeoutMs,proto3" json:"ElectionTimeoutMs,omitempty" yaml:"election-timeout"`
ListenClientURLs []string `protobuf:"bytes,21,rep,name=ListenClientURLs" json:"ListenClientURLs,omitempty" yaml:"listen-client-urls"`
AdvertiseClientURLs []string `protobuf:"bytes,22,rep,name=AdvertiseClientURLs" json:"AdvertiseClientURLs,omitempty" yaml:"advertise-client-urls"`
ListenPeerURLs []string `protobuf:"bytes,23,rep,name=ListenPeerURLs" json:"ListenPeerURLs,omitempty" yaml:"listen-peer-urls"`
InitialAdvertisePeerURLs []string `protobuf:"bytes,24,rep,name=InitialAdvertisePeerURLs" json:"InitialAdvertisePeerURLs,omitempty" yaml:"initial-advertise-peer-urls"`
InitialCluster string `protobuf:"bytes,31,opt,name=InitialCluster,proto3" json:"InitialCluster,omitempty" yaml:"initial-cluster"`
InitialClusterState string `protobuf:"bytes,32,opt,name=InitialClusterState,proto3" json:"InitialClusterState,omitempty" yaml:"initial-cluster-state"`
InitialClusterToken string `protobuf:"bytes,33,opt,name=InitialClusterToken,proto3" json:"InitialClusterToken,omitempty" yaml:"initial-cluster-token"`
SnapshotCount int64 `protobuf:"varint,41,opt,name=SnapshotCount,proto3" json:"SnapshotCount,omitempty" yaml:"snapshot-count"`
QuotaBackendBytes int64 `protobuf:"varint,42,opt,name=QuotaBackendBytes,proto3" json:"QuotaBackendBytes,omitempty" yaml:"quota-backend-bytes"`
PreVote bool `protobuf:"varint,43,opt,name=PreVote,proto3" json:"PreVote,omitempty" yaml:"pre-vote"`
InitialCorruptCheck bool `protobuf:"varint,44,opt,name=InitialCorruptCheck,proto3" json:"InitialCorruptCheck,omitempty" yaml:"initial-corrupt-check"`
}
func (m *Etcd) Reset() { *m = Etcd{} }
@@ -485,9 +491,21 @@ func (m *Etcd) MarshalTo(dAtA []byte) (int, error) {
i = encodeVarintRpc(dAtA, i, uint64(len(m.WALDir)))
i += copy(dAtA[i:], m.WALDir)
}
if m.HeartbeatIntervalMs != 0 {
dAtA[i] = 0x58
i++
i = encodeVarintRpc(dAtA, i, uint64(m.HeartbeatIntervalMs))
}
if m.ElectionTimeoutMs != 0 {
dAtA[i] = 0x60
i++
i = encodeVarintRpc(dAtA, i, uint64(m.ElectionTimeoutMs))
}
if len(m.ListenClientURLs) > 0 {
for _, s := range m.ListenClientURLs {
dAtA[i] = 0x22
dAtA[i] = 0xaa
i++
dAtA[i] = 0x1
i++
l = len(s)
for l >= 1<<7 {
@@ -502,7 +520,9 @@ func (m *Etcd) MarshalTo(dAtA []byte) (int, error) {
}
if len(m.AdvertiseClientURLs) > 0 {
for _, s := range m.AdvertiseClientURLs {
dAtA[i] = 0x2a
dAtA[i] = 0xb2
i++
dAtA[i] = 0x1
i++
l = len(s)
for l >= 1<<7 {
@@ -517,7 +537,9 @@ func (m *Etcd) MarshalTo(dAtA []byte) (int, error) {
}
if len(m.ListenPeerURLs) > 0 {
for _, s := range m.ListenPeerURLs {
dAtA[i] = 0x32
dAtA[i] = 0xba
i++
dAtA[i] = 0x1
i++
l = len(s)
for l >= 1<<7 {
@@ -532,7 +554,9 @@ func (m *Etcd) MarshalTo(dAtA []byte) (int, error) {
}
if len(m.InitialAdvertisePeerURLs) > 0 {
for _, s := range m.InitialAdvertisePeerURLs {
dAtA[i] = 0x3a
dAtA[i] = 0xc2
i++
dAtA[i] = 0x1
i++
l = len(s)
for l >= 1<<7 {
@@ -546,35 +570,47 @@ func (m *Etcd) MarshalTo(dAtA []byte) (int, error) {
}
}
if len(m.InitialCluster) > 0 {
dAtA[i] = 0x42
dAtA[i] = 0xfa
i++
dAtA[i] = 0x1
i++
i = encodeVarintRpc(dAtA, i, uint64(len(m.InitialCluster)))
i += copy(dAtA[i:], m.InitialCluster)
}
if len(m.InitialClusterState) > 0 {
dAtA[i] = 0x4a
dAtA[i] = 0x82
i++
dAtA[i] = 0x2
i++
i = encodeVarintRpc(dAtA, i, uint64(len(m.InitialClusterState)))
i += copy(dAtA[i:], m.InitialClusterState)
}
if len(m.InitialClusterToken) > 0 {
dAtA[i] = 0x52
dAtA[i] = 0x8a
i++
dAtA[i] = 0x2
i++
i = encodeVarintRpc(dAtA, i, uint64(len(m.InitialClusterToken)))
i += copy(dAtA[i:], m.InitialClusterToken)
}
if m.SnapshotCount != 0 {
dAtA[i] = 0x58
dAtA[i] = 0xc8
i++
dAtA[i] = 0x2
i++
i = encodeVarintRpc(dAtA, i, uint64(m.SnapshotCount))
}
if m.QuotaBackendBytes != 0 {
dAtA[i] = 0x60
dAtA[i] = 0xd0
i++
dAtA[i] = 0x2
i++
i = encodeVarintRpc(dAtA, i, uint64(m.QuotaBackendBytes))
}
if m.PreVote {
dAtA[i] = 0x68
dAtA[i] = 0xd8
i++
dAtA[i] = 0x2
i++
if m.PreVote {
dAtA[i] = 1
@@ -584,7 +620,9 @@ func (m *Etcd) MarshalTo(dAtA []byte) (int, error) {
i++
}
if m.InitialCorruptCheck {
dAtA[i] = 0x70
dAtA[i] = 0xe0
i++
dAtA[i] = 0x2
i++
if m.InitialCorruptCheck {
dAtA[i] = 1
@@ -1023,53 +1061,59 @@ func (m *Etcd) Size() (n int) {
if l > 0 {
n += 1 + l + sovRpc(uint64(l))
}
if m.HeartbeatIntervalMs != 0 {
n += 1 + sovRpc(uint64(m.HeartbeatIntervalMs))
}
if m.ElectionTimeoutMs != 0 {
n += 1 + sovRpc(uint64(m.ElectionTimeoutMs))
}
if len(m.ListenClientURLs) > 0 {
for _, s := range m.ListenClientURLs {
l = len(s)
n += 1 + l + sovRpc(uint64(l))
n += 2 + l + sovRpc(uint64(l))
}
}
if len(m.AdvertiseClientURLs) > 0 {
for _, s := range m.AdvertiseClientURLs {
l = len(s)
n += 1 + l + sovRpc(uint64(l))
n += 2 + l + sovRpc(uint64(l))
}
}
if len(m.ListenPeerURLs) > 0 {
for _, s := range m.ListenPeerURLs {
l = len(s)
n += 1 + l + sovRpc(uint64(l))
n += 2 + l + sovRpc(uint64(l))
}
}
if len(m.InitialAdvertisePeerURLs) > 0 {
for _, s := range m.InitialAdvertisePeerURLs {
l = len(s)
n += 1 + l + sovRpc(uint64(l))
n += 2 + l + sovRpc(uint64(l))
}
}
l = len(m.InitialCluster)
if l > 0 {
n += 1 + l + sovRpc(uint64(l))
n += 2 + l + sovRpc(uint64(l))
}
l = len(m.InitialClusterState)
if l > 0 {
n += 1 + l + sovRpc(uint64(l))
n += 2 + l + sovRpc(uint64(l))
}
l = len(m.InitialClusterToken)
if l > 0 {
n += 1 + l + sovRpc(uint64(l))
n += 2 + l + sovRpc(uint64(l))
}
if m.SnapshotCount != 0 {
n += 1 + sovRpc(uint64(m.SnapshotCount))
n += 2 + sovRpc(uint64(m.SnapshotCount))
}
if m.QuotaBackendBytes != 0 {
n += 1 + sovRpc(uint64(m.QuotaBackendBytes))
n += 2 + sovRpc(uint64(m.QuotaBackendBytes))
}
if m.PreVote {
n += 2
n += 3
}
if m.InitialCorruptCheck {
n += 2
n += 3
}
return n
}
@@ -1361,7 +1405,45 @@ func (m *Etcd) Unmarshal(dAtA []byte) error {
}
m.WALDir = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 4:
case 11:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field HeartbeatIntervalMs", wireType)
}
m.HeartbeatIntervalMs = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowRpc
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.HeartbeatIntervalMs |= (int64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
case 12:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field ElectionTimeoutMs", wireType)
}
m.ElectionTimeoutMs = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowRpc
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.ElectionTimeoutMs |= (int64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
case 21:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ListenClientURLs", wireType)
}
@@ -1390,7 +1472,7 @@ func (m *Etcd) Unmarshal(dAtA []byte) error {
}
m.ListenClientURLs = append(m.ListenClientURLs, string(dAtA[iNdEx:postIndex]))
iNdEx = postIndex
case 5:
case 22:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field AdvertiseClientURLs", wireType)
}
@@ -1419,7 +1501,7 @@ func (m *Etcd) Unmarshal(dAtA []byte) error {
}
m.AdvertiseClientURLs = append(m.AdvertiseClientURLs, string(dAtA[iNdEx:postIndex]))
iNdEx = postIndex
case 6:
case 23:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ListenPeerURLs", wireType)
}
@@ -1448,7 +1530,7 @@ func (m *Etcd) Unmarshal(dAtA []byte) error {
}
m.ListenPeerURLs = append(m.ListenPeerURLs, string(dAtA[iNdEx:postIndex]))
iNdEx = postIndex
case 7:
case 24:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field InitialAdvertisePeerURLs", wireType)
}
@@ -1477,7 +1559,7 @@ func (m *Etcd) Unmarshal(dAtA []byte) error {
}
m.InitialAdvertisePeerURLs = append(m.InitialAdvertisePeerURLs, string(dAtA[iNdEx:postIndex]))
iNdEx = postIndex
case 8:
case 31:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field InitialCluster", wireType)
}
@@ -1506,7 +1588,7 @@ func (m *Etcd) Unmarshal(dAtA []byte) error {
}
m.InitialCluster = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 9:
case 32:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field InitialClusterState", wireType)
}
@@ -1535,7 +1617,7 @@ func (m *Etcd) Unmarshal(dAtA []byte) error {
}
m.InitialClusterState = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 10:
case 33:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field InitialClusterToken", wireType)
}
@@ -1564,7 +1646,7 @@ func (m *Etcd) Unmarshal(dAtA []byte) error {
}
m.InitialClusterToken = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 11:
case 41:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field SnapshotCount", wireType)
}
@@ -1583,7 +1665,7 @@ func (m *Etcd) Unmarshal(dAtA []byte) error {
break
}
}
case 12:
case 42:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field QuotaBackendBytes", wireType)
}
@@ -1602,7 +1684,7 @@ func (m *Etcd) Unmarshal(dAtA []byte) error {
break
}
}
case 13:
case 43:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field PreVote", wireType)
}
@@ -1622,7 +1704,7 @@ func (m *Etcd) Unmarshal(dAtA []byte) error {
}
}
m.PreVote = bool(v != 0)
case 14:
case 44:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field InitialCorruptCheck", wireType)
}
@@ -2864,127 +2946,131 @@ var (
func init() { proto.RegisterFile("rpcpb/rpc.proto", fileDescriptorRpc) }
var fileDescriptorRpc = []byte{
// 1946 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x58, 0x6d, 0x77, 0xdb, 0x48,
0x15, 0x8e, 0x92, 0x38, 0x4d, 0x26, 0x6f, 0xea, 0xa4, 0x69, 0xd4, 0x97, 0x8d, 0x53, 0x2d, 0x5b,
0x42, 0x0e, 0x4a, 0xa1, 0xe5, 0x00, 0xbb, 0xec, 0x52, 0x6c, 0x47, 0x6d, 0x4c, 0x54, 0xdb, 0x1d,
0x2b, 0x6d, 0xf9, 0x64, 0x64, 0x79, 0x6c, 0x8b, 0x28, 0x92, 0x2a, 0x8d, 0xb3, 0xf6, 0xfe, 0x01,
0x0e, 0xdf, 0xf8, 0xc8, 0x8f, 0x60, 0xbf, 0xf0, 0x2b, 0xba, 0xbb, 0xe5, 0x1c, 0x7e, 0x81, 0x81,
0xf2, 0x0f, 0x7c, 0xf8, 0x0e, 0x67, 0x5e, 0x6c, 0x8f, 0xfc, 0xd2, 0xee, 0x37, 0xcf, 0xbd, 0xcf,
0xf3, 0xe8, 0xce, 0x9d, 0xb9, 0xf7, 0x4e, 0x02, 0xb6, 0xe3, 0xc8, 0x8d, 0xea, 0x0f, 0xe2, 0xc8,
0x3d, 0x8e, 0xe2, 0x90, 0x84, 0x30, 0xc3, 0x0c, 0xb7, 0x8d, 0x96, 0x47, 0xda, 0x9d, 0xfa, 0xb1,
0x1b, 0x5e, 0x3e, 0x68, 0x85, 0xad, 0xf0, 0x01, 0xf3, 0xd6, 0x3b, 0x4d, 0xb6, 0x62, 0x0b, 0xf6,
0x8b, 0xb3, 0xf4, 0xb7, 0xd7, 0xc0, 0xb2, 0x49, 0xdc, 0x06, 0xfc, 0x18, 0x2c, 0x97, 0x9c, 0x4b,
0xac, 0x29, 0x07, 0xca, 0xe1, 0x5a, 0x7e, 0x7b, 0xd0, 0xcf, 0xae, 0xf7, 0x9c, 0x4b, 0xff, 0x33,
0x3d, 0x70, 0x2e, 0xb1, 0x8e, 0x98, 0x13, 0x1a, 0xe0, 0xda, 0x89, 0x43, 0x9c, 0x13, 0x2f, 0xd6,
0x16, 0x19, 0x6e, 0x67, 0xd0, 0xcf, 0x6e, 0x73, 0x5c, 0xc3, 0x21, 0x8e, 0xd1, 0xf0, 0x62, 0x1d,
0x0d, 0x31, 0xf0, 0x08, 0xac, 0xbc, 0xcc, 0x59, 0x14, 0xbd, 0xc4, 0xd0, 0x70, 0xd0, 0xcf, 0x6e,
0x71, 0xf4, 0x97, 0x8e, 0xcf, 0xc1, 0x02, 0x01, 0x8b, 0x40, 0xb5, 0xbc, 0x84, 0xe0, 0xa0, 0xe0,
0x7b, 0x38, 0x20, 0xe7, 0xc8, 0x4a, 0xb4, 0xe5, 0x83, 0xa5, 0xc3, 0xb5, 0xfc, 0x47, 0x83, 0x7e,
0xf6, 0x16, 0x67, 0xf9, 0x0c, 0x61, 0xb8, 0x0c, 0x62, 0x74, 0x62, 0x3f, 0xd1, 0xd1, 0x14, 0x0d,
0x22, 0xb0, 0x93, 0x6b, 0x5c, 0xe1, 0x98, 0x78, 0x09, 0x96, 0xd4, 0x32, 0x4c, 0xed, 0x60, 0xd0,
0xcf, 0xde, 0xe5, 0x6a, 0xce, 0x10, 0x94, 0x16, 0x9c, 0x45, 0x86, 0x05, 0xb0, 0xc5, 0xbf, 0x53,
0xc1, 0x38, 0x66, 0x72, 0x2b, 0x4c, 0xee, 0xce, 0xa0, 0x9f, 0xdd, 0x4b, 0x05, 0x17, 0x61, 0x1c,
0x0b, 0xa5, 0x09, 0x0a, 0xac, 0x03, 0xad, 0x18, 0x78, 0xc4, 0x73, 0xfc, 0xd1, 0x27, 0x46, 0x72,
0xd7, 0x98, 0xdc, 0xfd, 0x41, 0x3f, 0xab, 0x73, 0x39, 0x8f, 0x23, 0x8d, 0x71, 0x94, 0x92, 0xf2,
0x5c, 0x1d, 0x98, 0x07, 0x5b, 0xc2, 0x57, 0xf0, 0x3b, 0x09, 0xc1, 0xb1, 0xb6, 0xca, 0x72, 0x7f,
0x7b, 0xd0, 0xcf, 0xde, 0x4c, 0x2b, 0xbb, 0x1c, 0xa0, 0xa3, 0x09, 0x06, 0x4d, 0x60, 0xda, 0x52,
0x25, 0x0e, 0xc1, 0xda, 0x1a, 0x13, 0x92, 0x12, 0x38, 0x21, 0x64, 0x24, 0x14, 0xa6, 0xa3, 0x59,
0xe4, 0x69, 0x4d, 0x3b, 0xbc, 0xc0, 0x81, 0x06, 0x3e, 0xa4, 0x49, 0x28, 0x6c, 0x4a, 0x93, 0x91,
0xe1, 0x63, 0xb0, 0x59, 0x0d, 0x9c, 0x28, 0x69, 0x87, 0xa4, 0x10, 0x76, 0x02, 0xa2, 0xad, 0x1f,
0x28, 0x87, 0x4b, 0xf9, 0x5b, 0x83, 0x7e, 0x76, 0x97, 0xab, 0x25, 0xc2, 0x6d, 0xb8, 0xd4, 0xaf,
0xa3, 0x34, 0x1e, 0x5a, 0xe0, 0xfa, 0xf3, 0x4e, 0x48, 0x9c, 0xbc, 0xe3, 0x5e, 0xe0, 0xa0, 0x91,
0xef, 0x11, 0x9c, 0x68, 0x1b, 0x4c, 0x64, 0x7f, 0xd0, 0xcf, 0xde, 0xe6, 0x22, 0xaf, 0x29, 0xc4,
0xa8, 0x73, 0x8c, 0x51, 0xa7, 0x20, 0x1d, 0x4d, 0x13, 0x69, 0x75, 0x54, 0x62, 0xfc, 0x22, 0x24,
0x58, 0xdb, 0x3c, 0x50, 0x0e, 0x57, 0xe5, 0xea, 0x88, 0x62, 0x6c, 0x5c, 0x85, 0x34, 0x3b, 0x43,
0x8c, 0x9c, 0x91, 0x30, 0x8e, 0x3b, 0x11, 0x29, 0xb4, 0xb1, 0x7b, 0xa1, 0x6d, 0x31, 0xea, 0xac,
0x8c, 0x70, 0x94, 0xe1, 0x52, 0x98, 0x94, 0x11, 0x89, 0xac, 0xff, 0x29, 0x03, 0x56, 0x9e, 0xe1,
0xcb, 0x3a, 0x8e, 0xe1, 0x17, 0x60, 0x83, 0x16, 0xb6, 0xd9, 0xc5, 0x6e, 0xc5, 0x21, 0x6d, 0x51,
0xd8, 0x52, 0x6e, 0x30, 0x71, 0x1b, 0x06, 0xee, 0x62, 0xd7, 0x88, 0x1c, 0xd2, 0xd6, 0x51, 0x0a,
0x0e, 0x1f, 0x81, 0xb5, 0x5c, 0x0b, 0x07, 0x24, 0xd7, 0x68, 0xc4, 0x2c, 0xaf, 0x6b, 0xf9, 0xdd,
0x41, 0x3f, 0x7b, 0x5d, 0x94, 0x0e, 0x75, 0x19, 0x4e, 0xa3, 0x11, 0xeb, 0x68, 0x8c, 0xa3, 0xf9,
0x7c, 0xe2, 0x78, 0x7e, 0x14, 0x7a, 0x01, 0x39, 0xb5, 0xed, 0x0a, 0x23, 0x6f, 0x30, 0xb2, 0x94,
0xcf, 0xe6, 0x10, 0x62, 0xb4, 0x09, 0x89, 0x84, 0xca, 0x34, 0x91, 0xe6, 0x33, 0xef, 0x24, 0x98,
0xf6, 0x0f, 0x3c, 0xd9, 0x6d, 0xea, 0x4e, 0x82, 0x45, 0xb7, 0x11, 0x18, 0xf8, 0x19, 0x58, 0xa7,
0x3b, 0xb0, 0xc2, 0x16, 0xdb, 0x6f, 0x93, 0x51, 0xb4, 0x41, 0x3f, 0x7b, 0x43, 0xda, 0xaf, 0x1f,
0xb6, 0xc4, 0x76, 0x65, 0x30, 0xcc, 0x81, 0x4d, 0xba, 0xe4, 0x05, 0x6f, 0x5b, 0x55, 0xed, 0x1b,
0x85, 0x1d, 0x83, 0x54, 0x35, 0x8c, 0x2e, 0x1a, 0x05, 0xa1, 0x35, 0x98, 0x66, 0xc0, 0xa7, 0x60,
0x7b, 0x6c, 0xa8, 0xc4, 0x61, 0xb7, 0xa7, 0x7d, 0xcb, 0x45, 0xee, 0x0e, 0xfa, 0x59, 0x6d, 0x5a,
0x24, 0xa2, 0x18, 0x1d, 0x4d, 0xb2, 0x86, 0xb1, 0xd0, 0x8a, 0xe6, 0x32, 0xdf, 0xcd, 0x8e, 0x85,
0xb5, 0x03, 0x21, 0x92, 0x66, 0xc0, 0x0a, 0x80, 0x63, 0x55, 0x33, 0x68, 0xb0, 0xbc, 0x6a, 0x6f,
0xf9, 0x15, 0xc8, 0x0e, 0xfa, 0xd9, 0x3b, 0xd3, 0xe1, 0x60, 0x01, 0xd3, 0xd1, 0x0c, 0x2e, 0xfc,
0x29, 0x1f, 0x13, 0xda, 0xd7, 0xb4, 0xef, 0xaf, 0x3f, 0x5c, 0x3f, 0x66, 0xd3, 0xe6, 0x98, 0xda,
0xe4, 0x61, 0x41, 0x05, 0x75, 0xc4, 0xa0, 0xfa, 0xff, 0xd6, 0xc1, 0x8a, 0x8d, 0x59, 0x43, 0x79,
0x0c, 0x36, 0xf9, 0xaf, 0x12, 0x26, 0x5f, 0x86, 0xf1, 0xc5, 0xf4, 0x65, 0x24, 0xcc, 0x6d, 0x04,
0xdc, 0xaf, 0xa3, 0x34, 0x1e, 0xfe, 0x1c, 0x00, 0x6e, 0x60, 0x37, 0x8a, 0xcf, 0x9e, 0x9b, 0x83,
0x7e, 0x16, 0xa6, 0xd8, 0xfc, 0x26, 0x49, 0x48, 0xda, 0xb6, 0x4f, 0xb0, 0xef, 0xf4, 0x2c, 0x87,
0xe0, 0xc0, 0xed, 0x3d, 0x4b, 0xd8, 0x55, 0xde, 0x94, 0xdb, 0x76, 0x83, 0xfa, 0x0d, 0x9f, 0x03,
0x8c, 0x4b, 0xda, 0xb6, 0xd3, 0x14, 0xf8, 0x5b, 0xa0, 0xa6, 0x2d, 0xe8, 0x8a, 0x5d, 0xea, 0x4d,
0xf9, 0x52, 0x4f, 0xca, 0x18, 0xf1, 0x95, 0x8e, 0xa6, 0x78, 0x74, 0x23, 0x28, 0xec, 0x04, 0x0d,
0xcb, 0xbb, 0xf4, 0x88, 0xb6, 0x7b, 0xa0, 0x1c, 0x66, 0xe4, 0x8d, 0xc4, 0xd4, 0x67, 0xf8, 0xd4,
0xa9, 0x23, 0x09, 0x09, 0x7f, 0x03, 0x36, 0xcd, 0xae, 0x47, 0xca, 0x01, 0x2d, 0x93, 0x4e, 0x8c,
0xb5, 0x9b, 0x53, 0x77, 0xa2, 0xeb, 0x11, 0x23, 0x0c, 0x8c, 0x26, 0x07, 0xd0, 0x3b, 0x21, 0x13,
0xe0, 0x29, 0x50, 0x0b, 0x61, 0x90, 0xb0, 0x89, 0xe4, 0xf6, 0x78, 0xaf, 0xd9, 0x9b, 0xbc, 0x9f,
0xee, 0x18, 0x31, 0xec, 0x33, 0x53, 0x2c, 0xf8, 0x29, 0x58, 0x37, 0x03, 0xa7, 0xee, 0xe3, 0x4a,
0x14, 0x87, 0x4d, 0x4d, 0x63, 0x22, 0x7b, 0x83, 0x7e, 0x76, 0x47, 0x44, 0xc2, 0x9c, 0x46, 0x44,
0xbd, 0xb4, 0xce, 0xc6, 0x58, 0xf8, 0x39, 0xd8, 0x10, 0xf1, 0x14, 0x9c, 0x04, 0x27, 0x5a, 0x96,
0x4d, 0x3d, 0xa9, 0x48, 0x45, 0xf4, 0x86, 0x4b, 0xdd, 0x3a, 0x4a, 0xa1, 0xe9, 0x69, 0x8a, 0x35,
0xcb, 0xeb, 0xb3, 0x44, 0x3b, 0x98, 0x3c, 0xcd, 0x21, 0x9f, 0x1f, 0x07, 0x3b, 0xcd, 0x34, 0x85,
0x0e, 0x48, 0x61, 0xa9, 0xb6, 0x3b, 0xcd, 0xa6, 0x8f, 0xb5, 0x7b, 0x93, 0xa9, 0x1c, 0x8a, 0x24,
0x1c, 0x30, 0xd6, 0x10, 0x0c, 0x78, 0x26, 0xf5, 0xb9, 0x42, 0x78, 0x79, 0xe9, 0x04, 0x8d, 0x44,
0xd3, 0x27, 0x5f, 0x2b, 0xe3, 0x3e, 0xe7, 0x0a, 0x8c, 0xdc, 0xe6, 0x86, 0x3c, 0xba, 0x2b, 0xd4,
0x09, 0x02, 0x1c, 0x8f, 0x5a, 0xf5, 0x8f, 0xd8, 0xfd, 0x96, 0x76, 0x15, 0x33, 0xbf, 0xdc, 0xac,
0x27, 0x28, 0xf4, 0xf9, 0x64, 0x76, 0x09, 0x8e, 0x03, 0xc7, 0x1f, 0xc9, 0x1c, 0x31, 0x19, 0x29,
0x20, 0x2c, 0x10, 0xb2, 0xd0, 0x14, 0x8d, 0x1e, 0x6f, 0x95, 0xc4, 0x38, 0x49, 0xec, 0x5e, 0x84,
0x13, 0x0d, 0xb3, 0x6d, 0x49, 0xc7, 0x9b, 0x30, 0xa7, 0x41, 0xa8, 0x57, 0x47, 0x32, 0x96, 0xde,
0x52, 0xbe, 0x3c, 0xc3, 0xbd, 0xaa, 0xf7, 0x15, 0x66, 0x4d, 0x38, 0x23, 0xa7, 0x56, 0x90, 0x2f,
0x70, 0xcf, 0x48, 0xbc, 0xaf, 0xe8, 0x2d, 0x4d, 0x11, 0x68, 0xe7, 0x4a, 0x19, 0x2c, 0x27, 0x6e,
0x61, 0xad, 0xc5, 0x64, 0xa4, 0x99, 0x38, 0x21, 0x63, 0xf8, 0x14, 0xa6, 0xa3, 0x19, 0x5c, 0xf8,
0x02, 0xdc, 0x18, 0x5b, 0x3b, 0xcd, 0xa6, 0xd7, 0x45, 0x4e, 0xd0, 0xc2, 0x5a, 0x9b, 0x69, 0xea,
0x83, 0x7e, 0x76, 0x7f, 0x5a, 0x93, 0xe1, 0x8c, 0x98, 0x02, 0x75, 0x34, 0x93, 0x0f, 0x7f, 0x0f,
0xf6, 0x66, 0xd9, 0xed, 0x6e, 0xa0, 0x79, 0x4c, 0x5a, 0x7a, 0xcb, 0xcd, 0x91, 0x36, 0x48, 0x37,
0xd0, 0xd1, 0x3c, 0x19, 0x3a, 0x51, 0x46, 0x2e, 0xbb, 0x1b, 0x94, 0xa3, 0x44, 0xfb, 0x03, 0x53,
0x96, 0x8e, 0x54, 0x52, 0x26, 0xdd, 0xc0, 0x08, 0xa3, 0x44, 0x47, 0x93, 0xac, 0xf1, 0xb1, 0xf0,
0xa6, 0x9e, 0xf0, 0xe9, 0x96, 0x49, 0x3d, 0x94, 0xb8, 0x0e, 0x9f, 0x05, 0xc9, 0xe8, 0x58, 0x04,
0x01, 0xfe, 0x0c, 0xac, 0x71, 0xc3, 0xf3, 0x4a, 0x95, 0x8f, 0xb5, 0x8c, 0xfc, 0x1c, 0x10, 0xec,
0xd7, 0xf4, 0xeb, 0x63, 0xa0, 0xfe, 0x47, 0x05, 0x5c, 0x43, 0xf8, 0x75, 0x07, 0x27, 0x04, 0x1e,
0x83, 0xb5, 0x72, 0x84, 0x63, 0x87, 0x78, 0x61, 0xc0, 0xda, 0xff, 0xd6, 0x43, 0x55, 0x0c, 0x91,
0x91, 0x1d, 0x8d, 0x21, 0xf0, 0x93, 0xe1, 0x43, 0x46, 0xe3, 0x13, 0x67, 0x53, 0x80, 0xb9, 0x11,
0x0d, 0x5f, 0x39, 0x9f, 0x0c, 0x67, 0x0c, 0xfb, 0x13, 0x63, 0x0c, 0xe3, 0x46, 0x24, 0x9c, 0xfa,
0xe7, 0x60, 0x15, 0xe1, 0x24, 0x0a, 0x83, 0x04, 0x43, 0x0d, 0x5c, 0xab, 0x76, 0x5c, 0x17, 0x27,
0x09, 0x8b, 0x63, 0x15, 0x0d, 0x97, 0xf0, 0x26, 0x58, 0xa1, 0x8f, 0xd5, 0x4e, 0xc2, 0x27, 0x0c,
0x12, 0xab, 0xa3, 0x7f, 0x2a, 0x52, 0xf0, 0x70, 0x0b, 0x80, 0x52, 0x48, 0xaa, 0xc4, 0x89, 0x09,
0x6e, 0xa8, 0x0b, 0xf0, 0x06, 0x50, 0xc5, 0x53, 0x8c, 0xd9, 0xe8, 0xec, 0x53, 0x15, 0xb8, 0x0d,
0xd6, 0x11, 0x4e, 0x46, 0x86, 0x45, 0xb8, 0x01, 0x56, 0xcf, 0x3c, 0xdf, 0x67, 0xab, 0x25, 0xea,
0xa6, 0x9d, 0x20, 0x17, 0xbb, 0x6d, 0xef, 0x0a, 0xab, 0xcb, 0x54, 0xe5, 0x04, 0x27, 0x24, 0x0e,
0x7b, 0x14, 0xc1, 0x9e, 0x54, 0x6a, 0x06, 0xde, 0x02, 0xbb, 0x79, 0xdf, 0x71, 0x2f, 0xda, 0xa1,
0xcf, 0x9e, 0xf8, 0x95, 0x30, 0x26, 0x76, 0x17, 0x75, 0xd5, 0x06, 0xbc, 0x03, 0xf6, 0xce, 0x83,
0xfa, 0x4c, 0x27, 0x86, 0xbb, 0xe0, 0x3a, 0xeb, 0x77, 0x29, 0x73, 0x13, 0xee, 0x81, 0x9d, 0xf3,
0xa0, 0x31, 0xe5, 0x68, 0x1d, 0xfd, 0x6d, 0x85, 0xc7, 0x23, 0x5a, 0x2d, 0xe5, 0x9f, 0x15, 0x2d,
0xab, 0x56, 0x2e, 0x99, 0xb5, 0x27, 0x65, 0xcb, 0x2a, 0xbf, 0x34, 0x91, 0xba, 0x00, 0x7f, 0x0c,
0x0e, 0xa7, 0xcc, 0xb5, 0xf3, 0x92, 0x5d, 0xb4, 0x6a, 0x36, 0x2a, 0x3e, 0x7d, 0x6a, 0xa2, 0x5a,
0xb5, 0x94, 0xab, 0x54, 0x4f, 0xcb, 0x36, 0x4f, 0x01, 0x43, 0x5b, 0x66, 0xee, 0xc4, 0x44, 0xea,
0x22, 0xbc, 0x0f, 0x74, 0xc9, 0x30, 0x8f, 0xb8, 0x34, 0x22, 0x3e, 0x3f, 0x2f, 0xa3, 0xf3, 0x67,
0xea, 0x32, 0xcb, 0x1d, 0x35, 0xe4, 0x2c, 0x4b, 0xcd, 0xc0, 0x23, 0x70, 0x3f, 0x6f, 0xe5, 0x0a,
0x67, 0xa7, 0x65, 0xcb, 0xac, 0x55, 0x4c, 0x13, 0xd5, 0x2a, 0x65, 0x64, 0xd7, 0xec, 0x57, 0x35,
0xf4, 0x2a, 0x1d, 0x71, 0x03, 0xe6, 0xc0, 0x17, 0xdf, 0x0f, 0x3b, 0x2f, 0x1a, 0x0c, 0x7f, 0x00,
0x0e, 0xe6, 0x4b, 0x88, 0xbd, 0x35, 0xe1, 0xaf, 0xc0, 0x2f, 0x3e, 0x84, 0x9a, 0xf7, 0x89, 0xd6,
0xfb, 0x3f, 0x21, 0xb2, 0xd0, 0x86, 0xf7, 0xc0, 0x47, 0xf3, 0x51, 0x34, 0x35, 0x1e, 0xfc, 0x21,
0xd0, 0x4f, 0x4c, 0x2b, 0xf7, 0xbb, 0xf7, 0xa7, 0xe5, 0x8d, 0x02, 0x7f, 0x0d, 0x3e, 0xfd, 0x30,
0x70, 0x5e, 0xc0, 0xdf, 0x28, 0xf0, 0x1e, 0xb8, 0x3b, 0x9b, 0x2f, 0x12, 0xf2, 0xad, 0x02, 0x7f,
0x09, 0x1e, 0xbd, 0x0f, 0x32, 0x4f, 0xfc, 0xbb, 0xf7, 0x88, 0x8b, 0x54, 0xbc, 0x55, 0xe0, 0x3e,
0xb8, 0x35, 0x1b, 0x42, 0xf3, 0xf0, 0x77, 0x05, 0x6a, 0x60, 0xa7, 0x54, 0xae, 0x3d, 0xc9, 0x15,
0xad, 0xda, 0xcb, 0xa2, 0x7d, 0x5a, 0xab, 0xda, 0xc8, 0xac, 0x56, 0xd5, 0xbf, 0x2e, 0xc2, 0x43,
0xf0, 0x71, 0xca, 0x53, 0x2a, 0x0b, 0x67, 0xed, 0x49, 0x19, 0xd5, 0xac, 0xe2, 0x0b, 0xb3, 0x44,
0x91, 0x5f, 0x2f, 0xc2, 0x6d, 0x00, 0x28, 0xac, 0x52, 0x2e, 0x96, 0xec, 0xaa, 0xfa, 0xe7, 0x25,
0xb8, 0x09, 0x56, 0xcd, 0x57, 0xb6, 0x89, 0x4a, 0x39, 0x4b, 0xfd, 0xef, 0xd2, 0x51, 0x08, 0xc0,
0x78, 0xf8, 0xc1, 0x15, 0xb0, 0x78, 0xf6, 0x42, 0x5d, 0x80, 0x6b, 0x20, 0x63, 0x99, 0xb9, 0xaa,
0xa9, 0x2a, 0x70, 0x07, 0x6c, 0x9b, 0x96, 0x59, 0xb0, 0x8b, 0xe5, 0x52, 0x0d, 0x9d, 0x97, 0x4a,
0xac, 0x08, 0x54, 0xb0, 0xf1, 0x32, 0x67, 0x17, 0x4e, 0x87, 0x96, 0x25, 0x5a, 0x6c, 0x56, 0xb9,
0x70, 0x56, 0x43, 0xb9, 0x82, 0x89, 0x86, 0xe6, 0x65, 0x0a, 0x64, 0x42, 0x43, 0x4b, 0xe6, 0xe1,
0x63, 0xb0, 0x66, 0xc7, 0x4e, 0x90, 0x44, 0x61, 0x4c, 0xe0, 0x43, 0x79, 0xb1, 0x25, 0xda, 0x9e,
0xe8, 0xb6, 0xb7, 0xb7, 0x47, 0x6b, 0xde, 0xf4, 0xf4, 0x85, 0x43, 0xe5, 0x27, 0x4a, 0xfe, 0xc6,
0x9b, 0x7f, 0xef, 0x2f, 0xbc, 0x79, 0xb7, 0xaf, 0xfc, 0xe3, 0xdd, 0xbe, 0xf2, 0xaf, 0x77, 0xfb,
0xca, 0x5f, 0xfe, 0xb3, 0xbf, 0x50, 0x5f, 0x61, 0xff, 0x0a, 0x7a, 0xf4, 0xff, 0x00, 0x00, 0x00,
0xff, 0xff, 0x4d, 0xf3, 0x65, 0xc5, 0x53, 0x12, 0x00, 0x00,
// 2010 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x58, 0xcb, 0x76, 0xdb, 0xc8,
0xd1, 0x16, 0x24, 0x51, 0x96, 0x5a, 0x37, 0xb8, 0x65, 0x49, 0xf0, 0x65, 0x04, 0x19, 0xf3, 0x8f,
0x7f, 0x8d, 0x32, 0x90, 0x13, 0x3b, 0x27, 0xc9, 0x4c, 0x66, 0xe2, 0x90, 0x14, 0x6c, 0x31, 0x82,
0x48, 0xba, 0x09, 0xd9, 0xce, 0x8a, 0x01, 0xc1, 0x26, 0x89, 0x08, 0x04, 0x60, 0xa0, 0xa9, 0x21,
0xe7, 0x05, 0x72, 0xb2, 0xcb, 0x32, 0x0f, 0x91, 0xd9, 0xe4, 0x29, 0x3c, 0x97, 0x9c, 0x93, 0x27,
0x60, 0x12, 0x67, 0x93, 0x35, 0x4f, 0xf6, 0xc9, 0xe9, 0x0b, 0x49, 0x80, 0x17, 0x3b, 0x3b, 0x76,
0xd5, 0xf7, 0x7d, 0xa8, 0xae, 0xae, 0xae, 0x6a, 0x09, 0x6c, 0x47, 0xa1, 0x13, 0xd6, 0x1e, 0x46,
0xa1, 0x73, 0x12, 0x46, 0x01, 0x09, 0x60, 0x86, 0x19, 0xee, 0xe8, 0x4d, 0x97, 0xb4, 0x3a, 0xb5,
0x13, 0x27, 0x68, 0x3f, 0x6c, 0x06, 0xcd, 0xe0, 0x21, 0xf3, 0xd6, 0x3a, 0x0d, 0xb6, 0x62, 0x0b,
0xf6, 0x8b, 0xb3, 0xb4, 0x7f, 0xad, 0x82, 0x65, 0x83, 0x38, 0x75, 0xf8, 0x21, 0x58, 0x2e, 0xda,
0x6d, 0xac, 0x48, 0x87, 0xd2, 0xd1, 0x5a, 0x6e, 0x7b, 0xd0, 0x57, 0xd7, 0x7b, 0x76, 0xdb, 0xfb,
0x4c, 0xf3, 0xed, 0x36, 0xd6, 0x10, 0x73, 0x42, 0x1d, 0xdc, 0x38, 0xb5, 0x89, 0x7d, 0xea, 0x46,
0xca, 0x22, 0xc3, 0xed, 0x0c, 0xfa, 0xea, 0x36, 0xc7, 0xd5, 0x6d, 0x62, 0xeb, 0x75, 0x37, 0xd2,
0xd0, 0x10, 0x03, 0x8f, 0xc1, 0xca, 0xcb, 0xac, 0x49, 0xd1, 0x4b, 0x0c, 0x0d, 0x07, 0x7d, 0x75,
0x8b, 0xa3, 0xbf, 0xb4, 0x3d, 0x0e, 0x16, 0x08, 0x58, 0x02, 0x3b, 0x67, 0xd8, 0x8e, 0x48, 0x0d,
0xdb, 0xa4, 0xe0, 0x13, 0x1c, 0x5d, 0xdb, 0xde, 0x45, 0xac, 0xac, 0x1f, 0x4a, 0x47, 0x4b, 0xb9,
0x0f, 0x06, 0x7d, 0xf5, 0x36, 0x27, 0xb6, 0x86, 0x20, 0xdd, 0x15, 0x28, 0x0d, 0xcd, 0x62, 0xc2,
0x02, 0xb8, 0x69, 0x78, 0xd8, 0x21, 0x6e, 0xe0, 0x5b, 0x6e, 0x1b, 0x07, 0x1d, 0x72, 0x11, 0x2b,
0x1b, 0x4c, 0xee, 0xee, 0xa0, 0xaf, 0xee, 0x73, 0x39, 0x2c, 0x20, 0x3a, 0xe1, 0x18, 0x0d, 0x4d,
0xb3, 0x60, 0x01, 0xc8, 0xa6, 0x1b, 0x13, 0xec, 0xe7, 0x3d, 0x17, 0xfb, 0xe4, 0x12, 0x99, 0xb1,
0xb2, 0x7b, 0xb8, 0x74, 0xb4, 0x96, 0x0c, 0xcc, 0x63, 0x08, 0xdd, 0x61, 0x10, 0xbd, 0x13, 0x79,
0xb1, 0x86, 0xa6, 0x68, 0x10, 0x81, 0x9d, 0x6c, 0xfd, 0x1a, 0x47, 0xc4, 0x8d, 0x71, 0x42, 0x6d,
0x8f, 0xa9, 0x1d, 0x0e, 0xfa, 0xea, 0x3d, 0xae, 0x66, 0x0f, 0x41, 0x69, 0xc1, 0x59, 0x64, 0x98,
0x07, 0x5b, 0xfc, 0x3b, 0x65, 0x8c, 0x23, 0x26, 0xb7, 0xcf, 0xe4, 0x12, 0xdb, 0x14, 0xc1, 0x85,
0x18, 0x47, 0x42, 0x69, 0x82, 0x02, 0x6b, 0x40, 0x29, 0xf8, 0x2e, 0x71, 0x6d, 0x6f, 0xf4, 0x89,
0x91, 0x9c, 0xc2, 0xe4, 0x1e, 0x0c, 0xfa, 0xaa, 0xc6, 0xe5, 0x5c, 0x8e, 0xd4, 0xc7, 0x51, 0x26,
0x94, 0xe7, 0xea, 0xc0, 0x1c, 0xd8, 0x12, 0xbe, 0xbc, 0xd7, 0x89, 0x09, 0x8e, 0x14, 0x95, 0xd5,
0xc5, 0x9d, 0x41, 0x5f, 0xdd, 0x4b, 0x2b, 0x3b, 0x1c, 0xa0, 0xa1, 0x09, 0x06, 0x4d, 0x60, 0xda,
0x52, 0x21, 0x36, 0xc1, 0xca, 0x21, 0x13, 0x4a, 0x24, 0x70, 0x42, 0x48, 0x8f, 0x29, 0x4c, 0x43,
0xb3, 0xc8, 0xd3, 0x9a, 0x56, 0x70, 0x85, 0x7d, 0xe5, 0xfe, 0xfb, 0x34, 0x09, 0x85, 0x4d, 0x69,
0x32, 0x32, 0x7c, 0x02, 0x36, 0x2b, 0xbe, 0x1d, 0xc6, 0xad, 0x80, 0xe4, 0x83, 0x8e, 0x4f, 0x94,
0x8f, 0x59, 0xe9, 0xdd, 0x1e, 0xf4, 0xd5, 0x5d, 0xae, 0x16, 0x0b, 0xb7, 0xee, 0x50, 0xbf, 0x86,
0xd2, 0x78, 0x68, 0x82, 0x9b, 0xcf, 0x3b, 0x01, 0xb1, 0x73, 0xb6, 0x73, 0x85, 0xfd, 0x7a, 0xae,
0x47, 0x70, 0xac, 0x1c, 0x33, 0x91, 0x83, 0x41, 0x5f, 0xbd, 0xc3, 0x45, 0x5e, 0x53, 0x88, 0x5e,
0xe3, 0x18, 0xbd, 0x46, 0x41, 0x1a, 0x9a, 0x26, 0xd2, 0x9b, 0x5b, 0x8e, 0xf0, 0x8b, 0x80, 0x60,
0xe5, 0x07, 0x87, 0xd2, 0xd1, 0x6a, 0xf2, 0xe6, 0x86, 0x11, 0xd6, 0xaf, 0x03, 0x9a, 0x9d, 0x21,
0x26, 0x99, 0x91, 0x20, 0x8a, 0x3a, 0x21, 0xc9, 0xb7, 0xb0, 0x73, 0xa5, 0x7c, 0xc2, 0xa8, 0xb3,
0x32, 0xc2, 0x51, 0xba, 0x43, 0x61, 0x89, 0x8c, 0x24, 0xc8, 0xda, 0xef, 0x33, 0x60, 0xe5, 0x02,
0xb7, 0x6b, 0x38, 0x82, 0x5f, 0x80, 0x0d, 0xda, 0x74, 0x8c, 0x2e, 0x76, 0xca, 0x36, 0x69, 0x89,
0xa6, 0x93, 0xc8, 0x0d, 0x26, 0x4e, 0x5d, 0xc7, 0x5d, 0xec, 0xe8, 0xa1, 0x4d, 0x5a, 0x1a, 0x4a,
0xc1, 0xe1, 0x63, 0xb0, 0x96, 0x6d, 0x62, 0x9f, 0x64, 0xeb, 0xf5, 0x88, 0x75, 0x88, 0xb5, 0xdc,
0xee, 0xa0, 0xaf, 0xde, 0x14, 0x57, 0x87, 0xba, 0x74, 0xbb, 0x5e, 0x8f, 0x34, 0x34, 0xc6, 0xd1,
0x7c, 0x3e, 0xb5, 0x5d, 0x2f, 0x0c, 0x5c, 0x9f, 0x9c, 0x59, 0x56, 0x99, 0x91, 0x37, 0x18, 0x39,
0x91, 0xcf, 0xc6, 0x10, 0xa2, 0xb7, 0x08, 0x09, 0x85, 0xca, 0x34, 0x91, 0xe6, 0x33, 0x67, 0xc7,
0x98, 0xf6, 0x36, 0x3c, 0xd9, 0x09, 0x6b, 0x76, 0x8c, 0x45, 0x27, 0x14, 0x18, 0xf8, 0x19, 0x58,
0xa7, 0x3b, 0x30, 0x83, 0x26, 0xdb, 0x6f, 0x83, 0x51, 0x94, 0x41, 0x5f, 0xbd, 0x95, 0xd8, 0xaf,
0x17, 0x34, 0xc5, 0x76, 0x93, 0x60, 0x98, 0x05, 0x9b, 0x74, 0xc9, 0x2f, 0xbc, 0x65, 0x56, 0x94,
0x6f, 0x24, 0x76, 0x0c, 0x89, 0x5b, 0xc3, 0xe8, 0xa2, 0x51, 0x10, 0x7a, 0x07, 0xd3, 0x0c, 0xf8,
0x0c, 0x6c, 0x8f, 0x0d, 0xe5, 0x28, 0xe8, 0xf6, 0x94, 0x6f, 0xb9, 0xc8, 0xbd, 0x41, 0x5f, 0x55,
0xa6, 0x45, 0x42, 0x8a, 0xd1, 0xd0, 0x24, 0x6b, 0x18, 0x0b, 0xbd, 0xd1, 0x5c, 0xe6, 0xbb, 0xd9,
0xb1, 0xb0, 0x76, 0x20, 0x44, 0xd2, 0x0c, 0x58, 0x06, 0x70, 0xac, 0x6a, 0xf8, 0x75, 0x96, 0x57,
0xe5, 0x7b, 0x5e, 0x02, 0xea, 0xa0, 0xaf, 0xde, 0x9d, 0x0e, 0x07, 0x0b, 0x98, 0x86, 0x66, 0x70,
0xe1, 0x8f, 0xf8, 0x08, 0x53, 0xbe, 0xa6, 0x33, 0x69, 0xfd, 0xd1, 0xfa, 0x09, 0x9b, 0x84, 0x27,
0xd4, 0x96, 0x1c, 0x64, 0x54, 0x50, 0x43, 0x0c, 0xaa, 0xfd, 0x67, 0x1d, 0xac, 0x58, 0x98, 0x35,
0x94, 0x27, 0x60, 0x93, 0xff, 0x2a, 0x62, 0xf2, 0x65, 0x10, 0x5d, 0x4d, 0x17, 0x23, 0x61, 0x6e,
0xdd, 0xe7, 0x7e, 0x0d, 0xa5, 0xf1, 0xf0, 0x27, 0x00, 0x70, 0x03, 0xab, 0x28, 0x3e, 0x17, 0xf7,
0x06, 0x7d, 0x15, 0xa6, 0xd8, 0xbc, 0x92, 0x12, 0x48, 0xda, 0xb6, 0x4f, 0xb1, 0x67, 0xf7, 0x4c,
0x9b, 0x60, 0xdf, 0xe9, 0x89, 0x61, 0xb7, 0x99, 0x6c, 0xdb, 0x75, 0xea, 0xd7, 0x3d, 0x0e, 0xd0,
0xdb, 0xb4, 0x6d, 0xa7, 0x29, 0xf0, 0x57, 0x40, 0x4e, 0x5b, 0xd0, 0x35, 0x2b, 0xea, 0xcd, 0x64,
0x51, 0x4f, 0xca, 0xe8, 0xd1, 0xb5, 0x86, 0xa6, 0x78, 0x74, 0x23, 0x28, 0xe8, 0xf8, 0x75, 0xd3,
0x6d, 0xbb, 0x44, 0xd9, 0x3d, 0x94, 0x8e, 0x32, 0xc9, 0x8d, 0x44, 0xd4, 0xa7, 0x7b, 0xd4, 0xa9,
0xa1, 0x04, 0x12, 0xfe, 0x12, 0x6c, 0x1a, 0x5d, 0x97, 0x94, 0x7c, 0x7a, 0x4d, 0x3a, 0x11, 0x56,
0xf6, 0xa6, 0x6a, 0xa2, 0xeb, 0x12, 0x3d, 0xf0, 0xf5, 0x06, 0x07, 0xd0, 0x9a, 0x48, 0x12, 0xe0,
0x19, 0x90, 0xf3, 0x81, 0x1f, 0xb3, 0x89, 0xe4, 0xf4, 0x78, 0xaf, 0xd9, 0x9f, 0xac, 0x4f, 0x67,
0x8c, 0x18, 0xf6, 0x99, 0x29, 0x16, 0xfc, 0x14, 0xac, 0x1b, 0xbe, 0x5d, 0xf3, 0x70, 0x39, 0x8c,
0x82, 0x86, 0xa2, 0x30, 0x91, 0xfd, 0x41, 0x5f, 0xdd, 0x11, 0x91, 0x30, 0xa7, 0x1e, 0x52, 0x2f,
0xbd, 0x67, 0x63, 0x2c, 0xfc, 0x1c, 0x6c, 0x88, 0x78, 0xf2, 0x76, 0x8c, 0x63, 0x45, 0x65, 0x53,
0x2f, 0x71, 0x49, 0x45, 0xf4, 0xba, 0x43, 0xdd, 0x1a, 0x4a, 0xa1, 0xe9, 0x69, 0x8a, 0x35, 0xcb,
0xeb, 0x45, 0xcc, 0x46, 0x52, 0xea, 0x34, 0x87, 0x7c, 0x7e, 0x1c, 0xec, 0x34, 0xd3, 0x14, 0x3a,
0x20, 0x85, 0xa5, 0xd2, 0xea, 0x34, 0x1a, 0x1e, 0x66, 0x33, 0x28, 0x95, 0xca, 0xa1, 0x48, 0xcc,
0x01, 0x63, 0x0d, 0xc1, 0x80, 0xe7, 0x89, 0x3e, 0x97, 0x0f, 0xda, 0x6d, 0xdb, 0xaf, 0xc7, 0x8a,
0x36, 0xf9, 0x5a, 0x19, 0xf7, 0x39, 0x47, 0x60, 0x92, 0x6d, 0x6e, 0xc8, 0xa3, 0xbb, 0x42, 0x1d,
0xdf, 0xc7, 0xd1, 0xa8, 0x55, 0x7f, 0xcc, 0xea, 0x3b, 0xb1, 0xab, 0x88, 0xf9, 0x93, 0xcd, 0x7a,
0x82, 0x42, 0x9f, 0x4f, 0x46, 0x97, 0xe0, 0xc8, 0xb7, 0xbd, 0x91, 0xcc, 0x31, 0x93, 0x49, 0x04,
0x84, 0x05, 0x22, 0x29, 0x34, 0x45, 0xa3, 0xc7, 0x5b, 0x21, 0x11, 0x8e, 0x63, 0xab, 0x17, 0xe2,
0x58, 0xc1, 0x6c, 0x5b, 0x89, 0xe3, 0x8d, 0x99, 0x53, 0x27, 0xd4, 0xab, 0xa1, 0x24, 0x96, 0x56,
0x29, 0x5f, 0x9e, 0xe3, 0x5e, 0xc5, 0xfd, 0x0a, 0xb3, 0x26, 0x9c, 0x49, 0xa6, 0x56, 0x90, 0xaf,
0x70, 0x4f, 0x8f, 0xdd, 0xaf, 0x68, 0x95, 0xa6, 0x08, 0xb4, 0x73, 0xa5, 0x0c, 0xa6, 0x1d, 0x35,
0xb1, 0xd2, 0x64, 0x32, 0x89, 0x99, 0x38, 0x21, 0xa3, 0x7b, 0x14, 0xa6, 0xa1, 0x19, 0x5c, 0xf8,
0x02, 0xdc, 0x1a, 0x5b, 0x3b, 0x8d, 0x86, 0xdb, 0x45, 0xb6, 0xdf, 0xc4, 0x4a, 0x8b, 0x69, 0x6a,
0x83, 0xbe, 0x7a, 0x30, 0xad, 0xc9, 0x70, 0x7a, 0x44, 0x81, 0x1a, 0x9a, 0xc9, 0x87, 0xbf, 0x01,
0xfb, 0xb3, 0xec, 0x56, 0xd7, 0x57, 0x5c, 0x26, 0x9d, 0x78, 0xcb, 0xcd, 0x91, 0xd6, 0x49, 0xd7,
0xd7, 0xd0, 0x3c, 0x19, 0x3a, 0x51, 0x46, 0x2e, 0xab, 0xeb, 0x97, 0xc2, 0x58, 0xf9, 0x2d, 0x53,
0x4e, 0x1c, 0x69, 0x42, 0x99, 0x74, 0x7d, 0x3d, 0x08, 0x63, 0x0d, 0x4d, 0xb2, 0xc6, 0xc7, 0xc2,
0x9b, 0x7a, 0xcc, 0xa7, 0x5b, 0x26, 0xf5, 0x50, 0xe2, 0x3a, 0x7c, 0x16, 0xc4, 0xa3, 0x63, 0x11,
0x04, 0xf8, 0x63, 0xb0, 0xc6, 0x0d, 0xcf, 0xcb, 0x15, 0x3e, 0xd6, 0x32, 0xc9, 0xe7, 0x80, 0x60,
0xbf, 0xa6, 0x5f, 0x1f, 0x03, 0xb5, 0xdf, 0x49, 0xe0, 0x06, 0xc2, 0xaf, 0x3b, 0x38, 0x26, 0xf0,
0x04, 0xac, 0x95, 0x42, 0x1c, 0xd9, 0xf4, 0xd5, 0xcf, 0xda, 0xff, 0xd6, 0x23, 0x59, 0x0c, 0x91,
0x91, 0x1d, 0x8d, 0x21, 0xf0, 0xa3, 0xe1, 0x43, 0x46, 0xe1, 0x13, 0x67, 0x53, 0x80, 0xb9, 0x11,
0x0d, 0x5f, 0x39, 0x1f, 0x0d, 0x67, 0x0c, 0xfb, 0xf3, 0x67, 0x0c, 0xe3, 0x46, 0x24, 0x9c, 0xda,
0xe7, 0x60, 0x15, 0xe1, 0x38, 0x0c, 0xfc, 0x18, 0x43, 0x05, 0xdc, 0xa8, 0x74, 0x1c, 0x07, 0xc7,
0x31, 0x8b, 0x63, 0x15, 0x0d, 0x97, 0x70, 0x0f, 0xac, 0xd0, 0xc7, 0x6a, 0x27, 0xe6, 0x13, 0x06,
0x89, 0xd5, 0xf1, 0xdf, 0xa4, 0x44, 0xf0, 0x70, 0x0b, 0x80, 0x62, 0x40, 0x2a, 0xc4, 0x8e, 0x08,
0xae, 0xcb, 0x0b, 0xf0, 0x16, 0x90, 0xc5, 0x53, 0x8c, 0xd9, 0xe8, 0xec, 0x93, 0x25, 0xb8, 0x0d,
0xd6, 0x11, 0x8e, 0x47, 0x86, 0x45, 0xb8, 0x01, 0x56, 0xcf, 0x5d, 0xcf, 0x63, 0xab, 0x25, 0xea,
0xa6, 0x9d, 0x20, 0x1b, 0x39, 0x2d, 0xf7, 0x1a, 0xcb, 0xcb, 0x54, 0xe5, 0x14, 0xc7, 0x24, 0x0a,
0x7a, 0x14, 0xc1, 0x9e, 0x54, 0x72, 0x06, 0xde, 0x06, 0xbb, 0x39, 0xcf, 0x76, 0xae, 0x5a, 0x81,
0xc7, 0x9e, 0xf8, 0xe5, 0x20, 0x22, 0x56, 0x17, 0x75, 0xe5, 0x3a, 0xbc, 0x0b, 0xf6, 0x2f, 0xfd,
0xda, 0x4c, 0x27, 0x86, 0xbb, 0xe0, 0x26, 0xeb, 0x77, 0x29, 0x73, 0x03, 0xee, 0x83, 0x9d, 0x4b,
0xbf, 0x3e, 0xe5, 0x68, 0x1e, 0xff, 0x79, 0x85, 0xc7, 0x23, 0x5a, 0x2d, 0xe5, 0x9f, 0x17, 0x4c,
0xb3, 0x5a, 0x2a, 0x1a, 0xd5, 0xa7, 0x25, 0xd3, 0x2c, 0xbd, 0x34, 0x90, 0xbc, 0x00, 0x3f, 0x01,
0x47, 0x53, 0xe6, 0xea, 0x65, 0xd1, 0x2a, 0x98, 0x55, 0x0b, 0x15, 0x9e, 0x3d, 0x33, 0x50, 0xb5,
0x52, 0xcc, 0x96, 0x2b, 0x67, 0x25, 0x8b, 0xa7, 0x80, 0xa1, 0x4d, 0x23, 0x7b, 0x6a, 0x20, 0x79,
0x11, 0x3e, 0x00, 0x5a, 0xc2, 0x30, 0x8f, 0xb8, 0x34, 0x22, 0x3e, 0xbf, 0x2c, 0xa1, 0xcb, 0x0b,
0x79, 0x99, 0xe5, 0x8e, 0x1a, 0xb2, 0xa6, 0x29, 0x67, 0xe0, 0x31, 0x78, 0x90, 0x33, 0xb3, 0xf9,
0xf3, 0xb3, 0x92, 0x69, 0x54, 0xcb, 0x86, 0x81, 0xaa, 0xe5, 0x12, 0xb2, 0xaa, 0xd6, 0xab, 0x2a,
0x7a, 0x95, 0x8e, 0xb8, 0x0e, 0xb3, 0xe0, 0x8b, 0xff, 0x0d, 0x3b, 0x2f, 0x1a, 0x0c, 0xff, 0x0f,
0x1c, 0xce, 0x97, 0x10, 0x7b, 0x6b, 0xc0, 0x9f, 0x83, 0x9f, 0xbe, 0x0f, 0x35, 0xef, 0x13, 0xcd,
0x77, 0x7f, 0x42, 0x64, 0xa1, 0x05, 0xef, 0x83, 0x0f, 0xe6, 0xa3, 0x68, 0x6a, 0x5c, 0xf8, 0xff,
0x40, 0x3b, 0x35, 0xcc, 0xec, 0xaf, 0xdf, 0x9d, 0x96, 0x37, 0x12, 0xfc, 0x05, 0xf8, 0xf4, 0xfd,
0xc0, 0x79, 0x01, 0x7f, 0x23, 0xc1, 0xfb, 0xe0, 0xde, 0x6c, 0xbe, 0x48, 0xc8, 0xb7, 0x12, 0xfc,
0x19, 0x78, 0xfc, 0x2e, 0xc8, 0x3c, 0xf1, 0xef, 0xde, 0x21, 0x2e, 0x52, 0xf1, 0xbd, 0x04, 0x0f,
0xc0, 0xed, 0xd9, 0x10, 0x9a, 0x87, 0xbf, 0x48, 0x50, 0x01, 0x3b, 0xc5, 0x52, 0xf5, 0x69, 0xb6,
0x60, 0x56, 0x5f, 0x16, 0xac, 0xb3, 0x6a, 0xc5, 0x42, 0x46, 0xa5, 0x22, 0xff, 0x69, 0x11, 0x1e,
0x81, 0x0f, 0x53, 0x9e, 0x62, 0x49, 0x38, 0xab, 0x4f, 0x4b, 0xa8, 0x6a, 0x16, 0x5e, 0x18, 0x45,
0x8a, 0xfc, 0x7a, 0x11, 0x6e, 0x03, 0x40, 0x61, 0xe5, 0x52, 0xa1, 0x68, 0x55, 0xe4, 0x3f, 0x2c,
0xc1, 0x4d, 0xb0, 0x6a, 0xbc, 0xb2, 0x0c, 0x54, 0xcc, 0x9a, 0xf2, 0xbf, 0x97, 0x8e, 0x03, 0x00,
0xc6, 0xc3, 0x0f, 0xae, 0x80, 0xc5, 0xf3, 0x17, 0xf2, 0x02, 0x5c, 0x03, 0x19, 0xd3, 0xc8, 0x56,
0x0c, 0x59, 0x82, 0x3b, 0x60, 0xdb, 0x30, 0x8d, 0xbc, 0x55, 0x28, 0x15, 0xab, 0xe8, 0xb2, 0x58,
0x64, 0x97, 0x40, 0x06, 0x1b, 0x2f, 0xb3, 0x56, 0xfe, 0x6c, 0x68, 0x59, 0xa2, 0x97, 0xcd, 0x2c,
0xe5, 0xcf, 0xab, 0x28, 0x9b, 0x37, 0xd0, 0xd0, 0xbc, 0x4c, 0x81, 0x4c, 0x68, 0x68, 0xc9, 0x3c,
0x7a, 0x02, 0xd6, 0xac, 0xc8, 0xf6, 0xe3, 0x30, 0x88, 0x08, 0x7c, 0x94, 0x5c, 0x6c, 0x89, 0xb6,
0x27, 0xba, 0xed, 0x9d, 0xed, 0xd1, 0x9a, 0x37, 0x3d, 0x6d, 0xe1, 0x48, 0xfa, 0xa1, 0x94, 0xbb,
0xf5, 0xe6, 0x1f, 0x07, 0x0b, 0x6f, 0xde, 0x1e, 0x48, 0x7f, 0x7d, 0x7b, 0x20, 0xfd, 0xfd, 0xed,
0x81, 0xf4, 0xc7, 0x7f, 0x1e, 0x2c, 0xd4, 0x56, 0xd8, 0xbf, 0xa9, 0x1e, 0xff, 0x37, 0x00, 0x00,
0xff, 0xff, 0x0c, 0xa7, 0x34, 0x49, 0xef, 0x12, 0x00, 0x00,
}

View File

@@ -38,17 +38,28 @@ message Etcd {
string Name = 1 [(gogoproto.moretags) = "yaml:\"name\""];
string DataDir = 2 [(gogoproto.moretags) = "yaml:\"data-dir\""];
string WALDir = 3 [(gogoproto.moretags) = "yaml:\"wal-dir\""];
repeated string ListenClientURLs = 4 [(gogoproto.moretags) = "yaml:\"listen-client-urls\""];
repeated string AdvertiseClientURLs = 5 [(gogoproto.moretags) = "yaml:\"advertise-client-urls\""];
repeated string ListenPeerURLs = 6 [(gogoproto.moretags) = "yaml:\"listen-peer-urls\""];
repeated string InitialAdvertisePeerURLs = 7 [(gogoproto.moretags) = "yaml:\"initial-advertise-peer-urls\""];
string InitialCluster = 8 [(gogoproto.moretags) = "yaml:\"initial-cluster\""];
string InitialClusterState = 9 [(gogoproto.moretags) = "yaml:\"initial-cluster-state\""];
string InitialClusterToken = 10 [(gogoproto.moretags) = "yaml:\"initial-cluster-token\""];
int64 SnapshotCount = 11 [(gogoproto.moretags) = "yaml:\"snapshot-count\""];
int64 QuotaBackendBytes = 12 [(gogoproto.moretags) = "yaml:\"quota-backend-bytes\""];
bool PreVote = 13 [(gogoproto.moretags) = "yaml:\"pre-vote\""];
bool InitialCorruptCheck = 14 [(gogoproto.moretags) = "yaml:\"initial-corrupt-check\""];
// HeartbeatIntervalMs is the time (in milliseconds) of a heartbeat interval.
// Default value is 100, which is 100ms.
int64 HeartbeatIntervalMs = 11 [(gogoproto.moretags) = "yaml:\"heartbeat-interval\""];
// ElectionTimeoutMs is the time (in milliseconds) for an election to timeout.
// Default value is 1000, which is 1s.
int64 ElectionTimeoutMs = 12 [(gogoproto.moretags) = "yaml:\"election-timeout\""];
repeated string ListenClientURLs = 21 [(gogoproto.moretags) = "yaml:\"listen-client-urls\""];
repeated string AdvertiseClientURLs = 22 [(gogoproto.moretags) = "yaml:\"advertise-client-urls\""];
repeated string ListenPeerURLs = 23 [(gogoproto.moretags) = "yaml:\"listen-peer-urls\""];
repeated string InitialAdvertisePeerURLs = 24 [(gogoproto.moretags) = "yaml:\"initial-advertise-peer-urls\""];
string InitialCluster = 31 [(gogoproto.moretags) = "yaml:\"initial-cluster\""];
string InitialClusterState = 32 [(gogoproto.moretags) = "yaml:\"initial-cluster-state\""];
string InitialClusterToken = 33 [(gogoproto.moretags) = "yaml:\"initial-cluster-token\""];
int64 SnapshotCount = 41 [(gogoproto.moretags) = "yaml:\"snapshot-count\""];
int64 QuotaBackendBytes = 42 [(gogoproto.moretags) = "yaml:\"quota-backend-bytes\""];
bool PreVote = 43 [(gogoproto.moretags) = "yaml:\"pre-vote\""];
bool InitialCorruptCheck = 44 [(gogoproto.moretags) = "yaml:\"initial-corrupt-check\""];
// TODO: support TLS
}