session: Add Patch verb #59

Merged
fyrchik merged 1 commit from aarifullin/frostfs-api:feat/patch/session into master 2024-08-06 12:34:40 +00:00
2 changed files with 4 additions and 0 deletions
Showing only changes of commit e5c976b557 - Show all commits

View file

@ -338,6 +338,7 @@ Object request verbs
| DELETE | 5 | Refers to object.Delete RPC call |
| RANGE | 6 | Refers to object.GetRange RPC call |
| RANGEHASH | 7 | Refers to object.GetRangeHash RPC call |
| PATCH | 8 | Refers to object.Patch RPC call |
<!-- end enums -->

View file

@ -36,6 +36,9 @@ message ObjectSessionContext {
// Refers to object.GetRangeHash RPC call
RANGEHASH = 7;
// Refers to object.Patch RPC call
PATCH = 8;
}
// Type of request for which the token is issued
Verb verb = 1 [ json_name = "verb" ];