rclone/vendor/storj.io/common/pb/datarepair.proto

17 lines
481 B
Protocol Buffer
Raw Normal View History

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";
import "gogo.proto";
import "google/protobuf/timestamp.proto";
package repair;
// InjuredSegment is the queue item used for the data repair queue.
2020-05-11 20:57:46 +02:00
message InjuredSegment {
bytes path = 1;
repeated int32 lost_pieces = 2;
google.protobuf.Timestamp inserted_time = 3 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false];
}