frostfs-api/storagegroup/types.proto

31 lines
1.1 KiB
Protocol Buffer
Raw Normal View History

2020-01-30 11:41:24 +00:00
syntax = "proto3";
package neo.fs.v2.storagegroup;
option go_package = "github.com/nspcc-dev/neofs-api-go/v2/storagegroup/grpc;storagegroup";
option csharp_namespace = "NeoFS.API.v2.StorageGroup";
2020-01-30 11:41:24 +00:00
import "refs/types.proto";
2020-01-30 11:41:24 +00:00
// StorageGroup groups the information about the NeoFS storage group.
// The storage group consists of objects from single container.
2020-01-30 11:41:24 +00:00
message StorageGroup {
// validation_data_size carries the total size of the payloads of the storage
// group members.
uint64 validation_data_size = 1;
// validation_hash carries homomorphic hash from the concatenation of the
// payloads of the storage group members
// The order of concatenation is the same as the order of the members in the
// Members field.
neo.fs.v2.refs.Checksum validation_hash = 2;
2020-01-30 11:41:24 +00:00
// expiration_epoch carries last NeoFS epoch number of the storage group
// lifetime.
uint64 expiration_epoch = 3;
// Members carries the list of identifiers of the object storage group members.
// The list is strictly ordered.
repeated neo.fs.v2.refs.ObjectID members = 4;
2020-01-30 11:41:24 +00:00
}