forked from TrueCloudLab/frostfs-api-go
Merge pull request #65 from nspcc-dev/update-to-neofs-api_v0.7.0
Update to NeoFS API v0.7.0
This commit is contained in:
commit
1aaef95dea
4 changed files with 4 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
|||
PROTO_VERSION=v0.6.1
|
||||
PROTO_VERSION=v0.7.0
|
||||
PROTO_URL=https://github.com/nspcc-dev/neofs-api/archive/$(PROTO_VERSION).tar.gz
|
||||
|
||||
B=\033[0;1m
|
||||
|
|
|
@ -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 the RPC call (zero is processed according to the placement rules) |
|
||||
|
||||
|
||||
<a name="object.PutResponse"></a>
|
||||
|
|
Binary file not shown.
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue