Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion IDL/ems_grpc.proto
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ service gRPCExec {
// Exec commands
rpc ShowCmdTextOutput(ShowCmdArgs) returns(stream ShowCmdTextReply) {};
rpc ShowCmdJSONOutput(ShowCmdArgs) returns(stream ShowCmdJSONReply) {};

rpc ActionJSON(ActionJSONArgs) returns(stream ActionJSONReply) {};

}

Expand Down Expand Up @@ -148,4 +148,13 @@ message ShowCmdJSONReply {
string errors = 3;
}

message ActionJSONArgs {
int64 ReqId = 1;
string yangpathjson = 2;
}

message ActionJSONReply {
int64 ResReqId = 1;
string yangjson = 2;
string errors = 3;
}