@@ -100,6 +100,23 @@ class StatusRequest(google.protobuf.message.Message):
100
100
101
101
global___StatusRequest = StatusRequest
102
102
103
+ class SessionCrypto (google .protobuf .message .Message ):
104
+ DESCRIPTOR : google .protobuf .descriptor .Descriptor
105
+
106
+ CIPHER_FIELD_NUMBER : builtins .int
107
+ DEGREE_FIELD_NUMBER : builtins .int
108
+ cipher : builtins .str
109
+ degree : builtins .str
110
+ def __init__ (
111
+ self ,
112
+ * ,
113
+ cipher : builtins .str = ...,
114
+ degree : builtins .str = ...,
115
+ ) -> None : ...
116
+ def ClearField (self , field_name : typing_extensions .Literal ["cipher" , b"cipher" , "degree" , b"degree" ]) -> None : ...
117
+
118
+ global___SessionCrypto = SessionCrypto
119
+
103
120
class SessionInfo (google .protobuf .message .Message ):
104
121
DESCRIPTOR : google .protobuf .descriptor .Descriptor
105
122
@@ -111,6 +128,8 @@ class SessionInfo(google.protobuf.message.Message):
111
128
SESSION_DIALECT_FIELD_NUMBER : builtins .int
112
129
UID_FIELD_NUMBER : builtins .int
113
130
GID_FIELD_NUMBER : builtins .int
131
+ ENCRYPTION_FIELD_NUMBER : builtins .int
132
+ SIGNING_FIELD_NUMBER : builtins .int
114
133
session_id : builtins .str
115
134
username : builtins .str
116
135
groupname : builtins .str
@@ -119,6 +138,10 @@ class SessionInfo(google.protobuf.message.Message):
119
138
session_dialect : builtins .str
120
139
uid : builtins .int
121
140
gid : builtins .int
141
+ @property
142
+ def encryption (self ) -> global___SessionCrypto : ...
143
+ @property
144
+ def signing (self ) -> global___SessionCrypto : ...
122
145
def __init__ (
123
146
self ,
124
147
* ,
@@ -130,8 +153,11 @@ class SessionInfo(google.protobuf.message.Message):
130
153
session_dialect : builtins .str = ...,
131
154
uid : builtins .int = ...,
132
155
gid : builtins .int = ...,
156
+ encryption : global___SessionCrypto | None = ...,
157
+ signing : global___SessionCrypto | None = ...,
133
158
) -> None : ...
134
- def ClearField (self , field_name : typing_extensions .Literal ["gid" , b"gid" , "groupname" , b"groupname" , "hostname" , b"hostname" , "remote_machine" , b"remote_machine" , "session_dialect" , b"session_dialect" , "session_id" , b"session_id" , "uid" , b"uid" , "username" , b"username" ]) -> None : ...
159
+ def HasField (self , field_name : typing_extensions .Literal ["encryption" , b"encryption" , "signing" , b"signing" ]) -> builtins .bool : ...
160
+ def ClearField (self , field_name : typing_extensions .Literal ["encryption" , b"encryption" , "gid" , b"gid" , "groupname" , b"groupname" , "hostname" , b"hostname" , "remote_machine" , b"remote_machine" , "session_dialect" , b"session_dialect" , "session_id" , b"session_id" , "signing" , b"signing" , "uid" , b"uid" , "username" , b"username" ]) -> None : ...
135
161
136
162
global___SessionInfo = SessionInfo
137
163
0 commit comments