diff --git a/proto-docs/object.md b/proto-docs/object.md index a860242..fa33d43 100644 --- a/proto-docs/object.md +++ b/proto-docs/object.md @@ -725,6 +725,13 @@ that affect system behaviour: Marks smaller parts of a split bigger object * __NEOFS__EXPIRATION_EPOCH \ Tells GC to delete object after that epoch +* __NEOFS__TICK_EPOCH \ + Decimal number that defines what epoch must produce + object notification with UTF-8 object address in a + body (`0` value produces notification right after + object put) +* __NEOFS__TICK_TOPIC \ + UTF-8 string topic ID that is used for object notification And some well-known attributes used by applications only: diff --git a/proto-docs/session.md b/proto-docs/session.md index 4e24e71..683777b 100644 --- a/proto-docs/session.md +++ b/proto-docs/session.md @@ -174,6 +174,7 @@ request meta headers are folded in matryoshka style. | session_token | [SessionToken](#neo.fs.v2.session.SessionToken) | | Session token within which the request is sent | | bearer_token | [neo.fs.v2.acl.BearerToken](#neo.fs.v2.acl.BearerToken) | | `BearerToken` with eACL overrides for the request | | origin | [RequestMetaHeader](#neo.fs.v2.session.RequestMetaHeader) | | `RequestMetaHeader` of the origin request | +| magic_number | [uint64](#uint64) | | NeoFS network magic. Must match the value for the network that the server belongs to. | diff --git a/proto-docs/status.md b/proto-docs/status.md index c99e015..c29c289 100644 --- a/proto-docs/status.md +++ b/proto-docs/status.md @@ -87,6 +87,7 @@ Section of failed statuses independent of the operation. | Name | Number | Description | | ---- | ------ | ----------- | | INTERNAL | 0 | [**1024**] Internal server error, default failure. Not detailed. If the server cannot match failed outcome to the code, it should use this code. | +| WRONG_MAGIC_NUMBER | 1 | [**1025**] Wrong magic of the NeoFS network. Details: - [**0**] Magic number of the served NeoFS network (big-endian 64-bit unsigned integer). |