frostfs-api/bootstrap/types.proto

22 lines
619 B
Protocol Buffer
Raw Normal View History

2020-01-30 11:41:24 +00:00
syntax = "proto3";
package bootstrap;
2020-03-31 06:58:22 +00:00
option go_package = "github.com/nspcc-dev/neofs-api-go/bootstrap";
2020-02-05 12:14:39 +00:00
option csharp_namespace = "NeoFS.API.Bootstrap";
2020-01-30 11:41:24 +00:00
message NodeInfo {
// Address is a node [multi-address](https://github.com/multiformats/multiaddr)
string Address = 1;
2020-01-30 11:41:24 +00:00
// PubKey is a compressed public key representation in bytes
bytes PubKey = 2;
2020-01-30 11:41:24 +00:00
// Options is set of node optional information, such as storage capacity, node location, price and etc
repeated string Options = 3;
enum State {
Unknown = 0;
Online = 1;
Offline = 2;
}
State state = 4;
2020-01-30 11:41:24 +00:00
}