diff --git a/object/service.proto b/object/service.proto index 2aa21fd..b5042e2 100644 --- a/object/service.proto +++ b/object/service.proto @@ -84,6 +84,8 @@ message PutRequest { Object Object = 1; // Token with session public key and user's signature session.Token Token = 2; + // Number of the object copies to store within the RPC call (zero is processed according to the placement rules) + uint32 CopiesNumber = 3; } oneof R { diff --git a/proto-docs/object.md b/proto-docs/object.md index ce9252b..4a1b2da 100644 --- a/proto-docs/object.md +++ b/proto-docs/object.md @@ -297,6 +297,7 @@ in distributed system. | ----- | ---- | ----- | ----------- | | Object | [Object](#object.Object) | | Object with at least container id and owner id fields | | Token | [session.Token](#session.Token) | | Token with session public key and user's signature | +| CopiesNumber | [uint32](#uint32) | | Number of the object copies to store within RPC call (zero is processed according to the placement rules) |