Skip to content

Commit

Permalink
add context for config server v2 pb
Browse files Browse the repository at this point in the history
Change-Id: I58a7d73be66857967f6c0f54cd67877ee6945dae
  • Loading branch information
shunjiazhu committed Nov 4, 2024
1 parent 3d56d3b commit 8bf724b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions config_server/protocol/v2/agentV2.proto
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ message ConfigInfo {
int64 version = 2; // Required, Config's version number or hash code
ConfigStatus status = 3; // Config's status
string message = 4; // Optional error message
map<string, bytes> context = 100; // context
}

// Define the Command information carried in the request
Expand All @@ -33,6 +34,7 @@ message CommandInfo {
string name = 2; // Required, Command's unique identification
ConfigStatus status = 3; // Command's status
string message = 4; // Optional error message
map<string, bytes> context = 100; // context
}

// Define Agent's basic attributes
Expand Down Expand Up @@ -94,13 +96,15 @@ message ConfigDetail {
string name = 1; // Required, Config's unique identification
int64 version = 2; // Required, Config's version number or hash code
bytes detail = 3; // Required, Config's detail
map<string, bytes> context = 100; // context
}

message CommandDetail {
string type = 1; // Required, Command type
string name = 2; // Required, Command name
bytes detail = 3; // Required, Command's detail
int64 expire_time = 4; // After which the command can be safely removed from history
map<string, bytes> context = 100; // context
}

enum ServerCapabilities {
Expand Down

0 comments on commit 8bf724b

Please sign in to comment.