2020-05-11 20:57:46 +02:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
syntax = "proto3";
|
|
|
|
option go_package = "storj.io/common/pb";
|
|
|
|
|
|
|
|
package node;
|
|
|
|
|
|
|
|
import "gogo.proto";
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
|
2020-05-29 15:08:11 +02:00
|
|
|
// Node represents a node in the overlay network.
|
|
|
|
// Node is info for a updating a single storagenode, used in the Update rpc calls.
|
2020-05-11 20:57:46 +02:00
|
|
|
message Node {
|
|
|
|
bytes id = 1 [(gogoproto.customtype) = "NodeID", (gogoproto.nullable) = false];
|
|
|
|
NodeAddress address = 2;
|
|
|
|
reserved 3 to 13;
|
|
|
|
string deprecated_last_ip = 14 [deprecated=true];
|
|
|
|
reserved "type", "restrictions", "reputation", "metadata", "latency_list", "audit_success", "is_up", "update_latency", "update_audit_success", "update_uptime", "version";
|
|
|
|
}
|
|
|
|
|
2020-05-29 15:08:11 +02:00
|
|
|
// NodeType is an enum of possible node types.
|
2020-05-11 20:57:46 +02:00
|
|
|
enum NodeType {
|
|
|
|
INVALID = 0;
|
|
|
|
SATELLITE = 1;
|
|
|
|
STORAGE = 2;
|
|
|
|
UPLINK = 3;
|
|
|
|
BOOTSTRAP = 4 [deprecated=true];
|
|
|
|
}
|
|
|
|
|
2020-05-29 15:08:11 +02:00
|
|
|
// NodeAddress contains the information needed to communicate with a node on the network.
|
2020-05-11 20:57:46 +02:00
|
|
|
message NodeAddress {
|
|
|
|
NodeTransport transport = 1;
|
|
|
|
string address = 2;
|
|
|
|
}
|
|
|
|
|
2020-05-29 15:08:11 +02:00
|
|
|
// NodeTransport is an enum of possible transports for the overlay network.
|
2020-05-11 20:57:46 +02:00
|
|
|
enum NodeTransport {
|
|
|
|
TCP_TLS_GRPC = 0;
|
|
|
|
}
|
|
|
|
|
2020-05-29 15:08:11 +02:00
|
|
|
// NodeOperator contains info about the storage node operator.
|
2020-05-11 20:57:46 +02:00
|
|
|
message NodeOperator {
|
|
|
|
string email = 1;
|
|
|
|
string wallet = 2;
|
|
|
|
}
|
|
|
|
|
2020-05-29 15:08:11 +02:00
|
|
|
// NodeCapacity contains all relevant data about a nodes ability to store data.
|
2020-05-11 20:57:46 +02:00
|
|
|
message NodeCapacity {
|
|
|
|
int64 free_bandwidth = 1 [deprecated=true];
|
|
|
|
int64 free_disk = 2;
|
|
|
|
}
|
|
|
|
|
2020-05-29 15:08:11 +02:00
|
|
|
// Deprecated: use NodeOperator instead.
|
2020-05-11 20:57:46 +02:00
|
|
|
message NodeMetadata {
|
|
|
|
string email = 1;
|
|
|
|
string wallet = 2;
|
|
|
|
}
|
|
|
|
|
2020-05-29 15:08:11 +02:00
|
|
|
// Deprecated: use NodeCapacity instead.
|
2020-05-11 20:57:46 +02:00
|
|
|
message NodeRestrictions {
|
|
|
|
int64 free_bandwidth = 1;
|
|
|
|
int64 free_disk = 2;
|
|
|
|
}
|
|
|
|
|
2020-05-29 15:08:11 +02:00
|
|
|
// NodeVersion contains version information about a node.
|
2020-05-11 20:57:46 +02:00
|
|
|
message NodeVersion {
|
|
|
|
string version = 1; // must be semver formatted
|
|
|
|
string commit_hash = 2;
|
|
|
|
google.protobuf.Timestamp timestamp = 3 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false];
|
|
|
|
bool release = 4;
|
|
|
|
}
|