forked from TrueCloudLab/frostfs-api
[#23] Use rich field names instead of abbreviations
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
21f51c8c8b
commit
5928fa9bea
1 changed files with 4 additions and 4 deletions
|
@ -45,7 +45,7 @@ message PutRequest {
|
|||
|
||||
message PutResponse {
|
||||
// CID (container id) is a SHA256 hash of the container structure
|
||||
bytes CID = 1 [(gogoproto.customtype) = "CID", (gogoproto.nullable) = false];
|
||||
bytes ContainerID = 1;
|
||||
}
|
||||
|
||||
message DeleteRequest {
|
||||
|
@ -62,7 +62,7 @@ message DeleteResponse { }
|
|||
|
||||
message GetRequest {
|
||||
// CID (container id) is a SHA256 hash of the container structure
|
||||
bytes CID = 1 [(gogoproto.customtype) = "CID", (gogoproto.nullable) = false];
|
||||
bytes ContainerID = 1;
|
||||
}
|
||||
|
||||
message GetResponse {
|
||||
|
@ -72,12 +72,12 @@ message GetResponse {
|
|||
|
||||
message ListRequest {
|
||||
// OwnerID is a wallet address
|
||||
bytes OwnerID = 1 [(gogoproto.customtype) = "OwnerID", (gogoproto.nullable) = false];
|
||||
bytes OwnerID = 1;
|
||||
}
|
||||
|
||||
message ListResponse {
|
||||
// CID (container id) is list of SHA256 hashes of the container structures
|
||||
repeated bytes CID = 1 [(gogoproto.customtype) = "CID", (gogoproto.nullable) = false];
|
||||
repeated bytes ContainerIDs = 1;
|
||||
}
|
||||
|
||||
message SetExtendedACLRequest {
|
||||
|
|
Loading…
Reference in a new issue