[#26] object: Add line breaks for readability
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
a5c1b3683b
commit
974a2288c4
1 changed files with 15 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
|
|
||||||
package object;
|
package object;
|
||||||
|
|
||||||
option go_package = "github.com/nspcc-dev/neofs-api-go/object";
|
option go_package = "github.com/nspcc-dev/neofs-api-go/object";
|
||||||
option csharp_namespace = "NeoFS.API.Object";
|
option csharp_namespace = "NeoFS.API.Object";
|
||||||
|
|
||||||
|
@ -21,6 +23,7 @@ message Header {
|
||||||
// OwnerID carries identifier the object owner in a binary format.
|
// OwnerID carries identifier the object owner in a binary format.
|
||||||
bytes OwnerID = 3;
|
bytes OwnerID = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Main carries the main part of the header.
|
// Main carries the main part of the header.
|
||||||
// Main MUST NOT be NULL.
|
// Main MUST NOT be NULL.
|
||||||
Main main = 1;
|
Main main = 1;
|
||||||
|
@ -35,6 +38,7 @@ message Header {
|
||||||
// Changing any byte of the payload changes the checksum.
|
// Changing any byte of the payload changes the checksum.
|
||||||
// It is calculated as a SHA-256 hash over payload bytes.
|
// It is calculated as a SHA-256 hash over payload bytes.
|
||||||
bytes PayloadChecksum = 1;
|
bytes PayloadChecksum = 1;
|
||||||
|
|
||||||
// HeaderChecksum carries checksum of the object header structure.
|
// HeaderChecksum carries checksum of the object header structure.
|
||||||
// It covers all object attributes. Changing any field of the object except
|
// It covers all object attributes. Changing any field of the object except
|
||||||
// CreatorKey and ChecksumSignature changes the checksum.
|
// CreatorKey and ChecksumSignature changes the checksum.
|
||||||
|
@ -43,15 +47,19 @@ message Header {
|
||||||
// It is calculated as a SHA-256 hash over marshaled object header
|
// It is calculated as a SHA-256 hash over marshaled object header
|
||||||
// with cut CreatorKey and ChecksumSignature.
|
// with cut CreatorKey and ChecksumSignature.
|
||||||
bytes HeaderChecksum = 2;
|
bytes HeaderChecksum = 2;
|
||||||
|
|
||||||
// SessionToken carries token of the session within which the object was created.
|
// SessionToken carries token of the session within which the object was created.
|
||||||
// If session token is presented in object, it acts as the user's proof of the
|
// If session token is presented in object, it acts as the user's proof of the
|
||||||
// correctness of the CreatorKey.
|
// correctness of the CreatorKey.
|
||||||
service.Token SessionToken = 3;
|
service.Token SessionToken = 3;
|
||||||
|
|
||||||
// CreatorKey carries public key of the object creator in a binary format.
|
// CreatorKey carries public key of the object creator in a binary format.
|
||||||
bytes CreatorKey = 4;
|
bytes CreatorKey = 4;
|
||||||
|
|
||||||
// ChecksumSignature carries signature of the structure checksum by the object creator.
|
// ChecksumSignature carries signature of the structure checksum by the object creator.
|
||||||
bytes ChecksumSignature = 5;
|
bytes ChecksumSignature = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Integrity carries object integrity evidence.
|
// Integrity carries object integrity evidence.
|
||||||
Integrity integrity = 1;
|
Integrity integrity = 1;
|
||||||
|
|
||||||
|
@ -63,18 +71,23 @@ message Header {
|
||||||
// Value carries the string value of the object attribute.
|
// Value carries the string value of the object attribute.
|
||||||
string Value = 2;
|
string Value = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Attributes carries list of the object attributes in a string key-value format.
|
// Attributes carries list of the object attributes in a string key-value format.
|
||||||
repeated Attribute Attributes = 2;
|
repeated Attribute Attributes = 2;
|
||||||
|
|
||||||
// CreationEpoch carries number of NeoFS epoch on which the object was created.
|
// CreationEpoch carries number of NeoFS epoch on which the object was created.
|
||||||
uint64 CreationEpoch = 3;
|
uint64 CreationEpoch = 3;
|
||||||
|
|
||||||
// Tombstone groups the options for deleting an object.
|
// Tombstone groups the options for deleting an object.
|
||||||
message Tombstone {
|
message Tombstone {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Tombstone marks the object to be deleted.
|
// Tombstone marks the object to be deleted.
|
||||||
Tombstone tombstone = 4;
|
Tombstone tombstone = 4;
|
||||||
|
|
||||||
// HomomorphicHash carries homomorphic hash of the object payload.
|
// HomomorphicHash carries homomorphic hash of the object payload.
|
||||||
bytes HomomorphicHash = 5;
|
bytes HomomorphicHash = 5;
|
||||||
|
|
||||||
// StorageGroup carries information about the NeoFS storage group.
|
// StorageGroup carries information about the NeoFS storage group.
|
||||||
storagegroup.StorageGroup StorageGroup = 6;
|
storagegroup.StorageGroup StorageGroup = 6;
|
||||||
|
|
||||||
|
@ -95,6 +108,7 @@ message Header {
|
||||||
// Origin carries the header of the origin object.
|
// Origin carries the header of the origin object.
|
||||||
Header Origin = 5;
|
Header Origin = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Split carries the position of the object in the split hierarchy.
|
// Split carries the position of the object in the split hierarchy.
|
||||||
Split split = 7;
|
Split split = 7;
|
||||||
}
|
}
|
||||||
|
@ -108,6 +122,7 @@ message Header {
|
||||||
message Object {
|
message Object {
|
||||||
// Header carries the object header.
|
// Header carries the object header.
|
||||||
Header Header = 1;
|
Header Header = 1;
|
||||||
|
|
||||||
// Payload carries the object payload bytes.
|
// Payload carries the object payload bytes.
|
||||||
bytes Payload = 2;
|
bytes Payload = 2;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue