Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(557)

Unified Diff: milo/api/proto/buildbot.proto

Issue 2364653002: Buildbot build json grpc endpoint (Closed)
Patch Set: Pass tests Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | milo/api/proto/buildbot.pb.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/api/proto/buildbot.proto
diff --git a/milo/api/proto/buildbot.proto b/milo/api/proto/buildbot.proto
index 04192de08f292a88661e6fa5ccdd10f161cc918c..e8a038fa2f83dacb33398ae2c25a7cb0cd4c8021 100644
--- a/milo/api/proto/buildbot.proto
+++ b/milo/api/proto/buildbot.proto
@@ -11,6 +11,7 @@ import "google/protobuf/timestamp.proto";
// The buildbot service definition.
service Buildbot {
rpc GetCompressedMasterJSON(MasterRequest) returns (CompressedMasterJSON) {}
+ rpc GetBuildbotBuildJSON(BuildbotBuildRequest) returns (BuildbotBuildJSON) {}
}
// The request containing the name of the master.
@@ -29,3 +30,16 @@ message CompressedMasterJSON {
// Gzipped json data of the master.
bytes data = 3;
}
+
+// The request for a specific build.
+message BuildbotBuildRequest {
+ string master = 1;
+ string builder = 2;
+ int64 build_num = 3;
+}
+
+// The response message for a specific build.
+message BuildbotBuildJSON {
+ // Json data of the build.
+ bytes data = 1;
+}
« no previous file with comments | « no previous file | milo/api/proto/buildbot.pb.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698