Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add server_offered_version to AgentInstallStatus #11

Merged
Merged
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
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -766,18 +766,25 @@ performed by the agent and has the following structure:

```protobuf
message AgentInstallStatus {
bytes server_offered_hash = 1;
string server_offered_version = 1;
bytes server_offered_hash = 2;
enum Status {
INSTALLED = 0;
INSTALLING = 1;
INSTALL_FAILED = 2;
INSTALL_NO_PERMISSION = 3;
}
Status status = 2;
string error_message = 3;
Status status = 3;
string error_message = 4;
}
```

<h4 id="server_offered_version">server_offered_version</h4>

The version field from the AgentPackageAvailable that the server offered to the
agent. MUST be set if the agent previously received an offer from the server to
install this agent.


<h4 id="server_offered_hash">server_offered_hash</h4>

Expand Down