2020-01-30 11:41:24 +00:00
|
|
|
syntax = "proto3";
|
2020-08-05 08:49:51 +00:00
|
|
|
|
2020-01-30 11:41:24 +00:00
|
|
|
package storagegroup;
|
2020-08-05 08:49:51 +00:00
|
|
|
|
2020-03-31 06:58:22 +00:00
|
|
|
option go_package = "github.com/nspcc-dev/neofs-api-go/storagegroup";
|
2020-02-05 12:14:39 +00:00
|
|
|
option csharp_namespace = "NeoFS.API.StorageGroup";
|
2020-01-30 11:41:24 +00:00
|
|
|
|
2020-08-04 14:21:44 +00:00
|
|
|
import "refs/types.proto";
|
2020-01-30 11:41:24 +00:00
|
|
|
|
2020-08-05 08:48:26 +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 {
|
2020-08-05 08:48:26 +00:00
|
|
|
// ValidationDataSize carries the total size of the payloads of the storage group members.
|
2020-01-30 11:41:24 +00:00
|
|
|
uint64 ValidationDataSize = 1;
|
2020-08-05 08:49:51 +00:00
|
|
|
|
2020-08-05 08:48:26 +00:00
|
|
|
// ValidationHash 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.
|
2020-08-05 08:32:49 +00:00
|
|
|
bytes ValidationHash = 2;
|
2020-01-30 11:41:24 +00:00
|
|
|
|
2020-08-05 08:41:51 +00:00
|
|
|
// ExpirationEpoch carries last NeoFS epoch number of the storage group lifetime.
|
|
|
|
uint64 ExpirationEpoch = 3;
|
2020-08-04 14:21:44 +00:00
|
|
|
|
|
|
|
// Members carries the list of identifiers of the object storage group members.
|
|
|
|
// The list is strictly ordered.
|
|
|
|
repeated refs.ObjectID Members = 4;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|