From 77c4b55100f6d700ed9e9f9c059fd9b67ca13d9a Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Mon, 24 May 2021 14:14:22 +0300 Subject: [PATCH] [#156] session: Add ContainerServiceContext to SessionToken.Body oneof Extend `session.SessionToken.Body.context` oneof with `container` field of type `ContainerServiceContext`. This field is going to be used for RPCs of `container.ContainerService`. Signed-off-by: Leonard Lyubich --- session/types.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/session/types.proto b/session/types.proto index e4871bf..884d487 100644 --- a/session/types.proto +++ b/session/types.proto @@ -102,6 +102,9 @@ message SessionToken { oneof context { // ObjectService session context ObjectSessionContext object = 5 [json_name = "object"]; + + // ContainerService session context + ContainerSessionContext container = 6 [json_name = "container"]; } } // Session Token contains the proof of trust between peers to be attached in