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

Unified Diff: go/src/infra/monorail/monorail.pb.go

Issue 2056603002: [monorail go api] add IssuesList rpc (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: lowering test coverage Created 4 years, 6 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 | « go/src/infra/monorail/monorail.proto ('k') | go/src/infra/monorail/pb.discovery.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: go/src/infra/monorail/monorail.pb.go
diff --git a/go/src/infra/monorail/monorail.pb.go b/go/src/infra/monorail/monorail.pb.go
index 6cf4c7e41c96fc8a3bc9003962f82144299e120d..ce82ff20230a51ff6a9bb6ae44cc1182a10b154e 100644
--- a/go/src/infra/monorail/monorail.pb.go
+++ b/go/src/infra/monorail/monorail.pb.go
@@ -15,6 +15,8 @@ It has these top-level messages:
InsertIssueResponse
InsertCommentRequest
InsertCommentResponse
+ IssuesListRequest
+ IssuesListResponse
Update
AtomPerson
*/
@@ -43,6 +45,44 @@ var _ = math.Inf
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
+type IssuesListRequest_CannedQuery int32
+
+const (
+ IssuesListRequest_ALL IssuesListRequest_CannedQuery = 0
+ IssuesListRequest_NEW IssuesListRequest_CannedQuery = 1
+ IssuesListRequest_OPEN IssuesListRequest_CannedQuery = 2
+ IssuesListRequest_OWNED IssuesListRequest_CannedQuery = 3
+ IssuesListRequest_REPORTED IssuesListRequest_CannedQuery = 4
+ IssuesListRequest_STARRED IssuesListRequest_CannedQuery = 5
+ IssuesListRequest_TO_VERIFY IssuesListRequest_CannedQuery = 6
+)
+
+var IssuesListRequest_CannedQuery_name = map[int32]string{
+ 0: "ALL",
+ 1: "NEW",
+ 2: "OPEN",
+ 3: "OWNED",
+ 4: "REPORTED",
+ 5: "STARRED",
+ 6: "TO_VERIFY",
+}
+var IssuesListRequest_CannedQuery_value = map[string]int32{
+ "ALL": 0,
+ "NEW": 1,
+ "OPEN": 2,
+ "OWNED": 3,
+ "REPORTED": 4,
+ "STARRED": 5,
+ "TO_VERIFY": 6,
+}
+
+func (x IssuesListRequest_CannedQuery) String() string {
+ return proto.EnumName(IssuesListRequest_CannedQuery_name, int32(x))
+}
+func (IssuesListRequest_CannedQuery) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor0, []int{6, 0}
+}
+
// A monorail issue.
type Issue struct {
// Reporter of the issue.
@@ -223,6 +263,47 @@ func (m *InsertCommentResponse) String() string { return proto.Compac
func (*InsertCommentResponse) ProtoMessage() {}
func (*InsertCommentResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
+type IssuesListRequest struct {
+ ProjectId string `protobuf:"bytes,1,opt,name=projectId" json:"projectId,omitempty"`
+ AdditionalProject []string `protobuf:"bytes,2,rep,name=additionalProject" json:"additionalProject,omitempty"`
+ Can IssuesListRequest_CannedQuery `protobuf:"varint,3,opt,name=can,enum=monorail.IssuesListRequest_CannedQuery" json:"can,omitempty"`
+ Label string `protobuf:"bytes,4,opt,name=label" json:"label,omitempty"`
+ MaxResults int32 `protobuf:"varint,5,opt,name=maxResults" json:"maxResults,omitempty"`
+ Owner string `protobuf:"bytes,6,opt,name=owner" json:"owner,omitempty"`
+ PublishedMax int64 `protobuf:"varint,7,opt,name=publishedMax" json:"publishedMax,omitempty"`
+ PublishedMin int64 `protobuf:"varint,8,opt,name=publishedMin" json:"publishedMin,omitempty"`
+ Q string `protobuf:"bytes,9,opt,name=q" json:"q,omitempty"`
+ Sort string `protobuf:"bytes,10,opt,name=sort" json:"sort,omitempty"`
+ StartIndex int32 `protobuf:"varint,11,opt,name=startIndex" json:"startIndex,omitempty"`
+ Status string `protobuf:"bytes,12,opt,name=status" json:"status,omitempty"`
+ UpdatedMax int64 `protobuf:"varint,13,opt,name=updatedMax" json:"updatedMax,omitempty"`
+ UpdatedMin int64 `protobuf:"varint,14,opt,name=updatedMin" json:"updatedMin,omitempty"`
+}
+
+func (m *IssuesListRequest) Reset() { *m = IssuesListRequest{} }
+func (m *IssuesListRequest) String() string { return proto.CompactTextString(m) }
+func (*IssuesListRequest) ProtoMessage() {}
+func (*IssuesListRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
+
+type IssuesListResponse struct {
+ // error = messages.MessageField(ErrorMessage, 1)
+ Items []*Issue `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
+ TotalResults int32 `protobuf:"varint,3,opt,name=totalResults" json:"totalResults,omitempty"`
+ Kind string `protobuf:"bytes,4,opt,name=kind" json:"kind,omitempty"`
+}
+
+func (m *IssuesListResponse) Reset() { *m = IssuesListResponse{} }
+func (m *IssuesListResponse) String() string { return proto.CompactTextString(m) }
+func (*IssuesListResponse) ProtoMessage() {}
+func (*IssuesListResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
+
+func (m *IssuesListResponse) GetItems() []*Issue {
+ if m != nil {
+ return m.Items
+ }
+ return nil
+}
+
// Defines a mutation to an issue.
// This message is partial.
// Derived from Update type in api_pb2_v1.py.
@@ -234,7 +315,7 @@ type Update struct {
func (m *Update) Reset() { *m = Update{} }
func (m *Update) String() string { return proto.CompactTextString(m) }
func (*Update) ProtoMessage() {}
-func (*Update) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
+func (*Update) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
// Identifies a Monorail user.
type AtomPerson struct {
@@ -245,7 +326,7 @@ type AtomPerson struct {
func (m *AtomPerson) Reset() { *m = AtomPerson{} }
func (m *AtomPerson) String() string { return proto.CompactTextString(m) }
func (*AtomPerson) ProtoMessage() {}
-func (*AtomPerson) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
+func (*AtomPerson) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
func init() {
proto.RegisterType((*Issue)(nil), "monorail.Issue")
@@ -255,8 +336,11 @@ func init() {
proto.RegisterType((*InsertCommentRequest)(nil), "monorail.InsertCommentRequest")
proto.RegisterType((*InsertCommentRequest_Comment)(nil), "monorail.InsertCommentRequest.Comment")
proto.RegisterType((*InsertCommentResponse)(nil), "monorail.InsertCommentResponse")
+ proto.RegisterType((*IssuesListRequest)(nil), "monorail.IssuesListRequest")
+ proto.RegisterType((*IssuesListResponse)(nil), "monorail.IssuesListResponse")
proto.RegisterType((*Update)(nil), "monorail.Update")
proto.RegisterType((*AtomPerson)(nil), "monorail.AtomPerson")
+ proto.RegisterEnum("monorail.IssuesListRequest_CannedQuery", IssuesListRequest_CannedQuery_name, IssuesListRequest_CannedQuery_value)
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -274,6 +358,8 @@ type MonorailClient interface {
InsertIssue(ctx context.Context, in *InsertIssueRequest, opts ...grpc.CallOption) (*InsertIssueResponse, error)
// Posts a comment to an issue. Can update issue attributes, such as status.
InsertComment(ctx context.Context, in *InsertCommentRequest, opts ...grpc.CallOption) (*InsertCommentResponse, error)
+ // Lists issues from a project.
+ IssuesList(ctx context.Context, in *IssuesListRequest, opts ...grpc.CallOption) (*IssuesListResponse, error)
}
type monorailPRPCClient struct {
client *prpccommon.Client
@@ -301,6 +387,15 @@ func (c *monorailPRPCClient) InsertComment(ctx context.Context, in *InsertCommen
return out, nil
}
+func (c *monorailPRPCClient) IssuesList(ctx context.Context, in *IssuesListRequest, opts ...grpc.CallOption) (*IssuesListResponse, error) {
+ out := new(IssuesListResponse)
+ err := c.client.Call(ctx, "monorail.Monorail", "IssuesList", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
type monorailClient struct {
cc *grpc.ClientConn
}
@@ -327,6 +422,15 @@ func (c *monorailClient) InsertComment(ctx context.Context, in *InsertCommentReq
return out, nil
}
+func (c *monorailClient) IssuesList(ctx context.Context, in *IssuesListRequest, opts ...grpc.CallOption) (*IssuesListResponse, error) {
+ out := new(IssuesListResponse)
+ err := grpc.Invoke(ctx, "/monorail.Monorail/IssuesList", in, out, c.cc, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
// Server API for Monorail service
type MonorailServer interface {
@@ -334,6 +438,8 @@ type MonorailServer interface {
InsertIssue(context.Context, *InsertIssueRequest) (*InsertIssueResponse, error)
// Posts a comment to an issue. Can update issue attributes, such as status.
InsertComment(context.Context, *InsertCommentRequest) (*InsertCommentResponse, error)
+ // Lists issues from a project.
+ IssuesList(context.Context, *IssuesListRequest) (*IssuesListResponse, error)
}
func RegisterMonorailServer(s prpc.Registrar, srv MonorailServer) {
@@ -376,6 +482,24 @@ func _Monorail_InsertComment_Handler(srv interface{}, ctx context.Context, dec f
return interceptor(ctx, in, info, handler)
}
+func _Monorail_IssuesList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(IssuesListRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(MonorailServer).IssuesList(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/monorail.Monorail/IssuesList",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(MonorailServer).IssuesList(ctx, req.(*IssuesListRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
var _Monorail_serviceDesc = grpc.ServiceDesc{
ServiceName: "monorail.Monorail",
HandlerType: (*MonorailServer)(nil),
@@ -388,41 +512,65 @@ var _Monorail_serviceDesc = grpc.ServiceDesc{
MethodName: "InsertComment",
Handler: _Monorail_InsertComment_Handler,
},
+ {
+ MethodName: "IssuesList",
+ Handler: _Monorail_IssuesList_Handler,
+ },
},
Streams: []grpc.StreamDesc{},
}
var fileDescriptor0 = []byte{
- // 491 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x7c, 0x54, 0xdd, 0x8a, 0xd4, 0x30,
- 0x14, 0xb6, 0xdd, 0x6d, 0xa7, 0x3d, 0xd5, 0x55, 0x8f, 0xab, 0x86, 0x61, 0x5d, 0x87, 0xa2, 0xb2,
- 0x88, 0x0c, 0x32, 0xde, 0x7a, 0xe1, 0x0f, 0x5e, 0x0c, 0x28, 0x2b, 0x01, 0x1f, 0xa0, 0xd3, 0x46,
- 0xac, 0x4e, 0x92, 0xb1, 0x49, 0x59, 0x7c, 0x27, 0xdf, 0x46, 0x7c, 0x1f, 0xd3, 0x34, 0xb1, 0x9d,
- 0x61, 0x76, 0xee, 0x72, 0xf2, 0xfd, 0xe4, 0xf4, 0x3b, 0x87, 0xc2, 0x09, 0x97, 0x42, 0x36, 0x45,
- 0xbd, 0x9e, 0x6f, 0x1a, 0xa9, 0x25, 0x26, 0xbe, 0xce, 0xff, 0x86, 0x10, 0x2d, 0x95, 0x6a, 0x19,
- 0xbe, 0x80, 0xb8, 0x68, 0xf5, 0x37, 0xd9, 0x90, 0x60, 0x16, 0x5c, 0x64, 0x8b, 0xd3, 0xf9, 0x7f,
- 0xd1, 0x5b, 0x2d, 0xf9, 0x67, 0xd6, 0x28, 0x29, 0xa8, 0xe3, 0xe0, 0x4b, 0x48, 0x57, 0x6b, 0x59,
- 0xfe, 0x60, 0xd5, 0xa5, 0x20, 0xe1, 0xec, 0xc8, 0x08, 0x70, 0x10, 0x58, 0x47, 0xca, 0xbe, 0xd2,
- 0x81, 0x84, 0x4f, 0x20, 0x2c, 0x4b, 0x12, 0x5b, 0xea, 0x7e, 0x6f, 0x83, 0xe3, 0x0c, 0xb2, 0x8a,
- 0xa9, 0xb2, 0xa9, 0x37, 0xba, 0x96, 0x82, 0x24, 0xa6, 0x95, 0x94, 0x8e, 0xaf, 0xf0, 0x04, 0xc2,
- 0xba, 0x22, 0xa9, 0x01, 0x22, 0x6a, 0x4e, 0x78, 0x0e, 0x50, 0x4a, 0xbe, 0x91, 0x82, 0x09, 0xad,
- 0x08, 0x18, 0xff, 0x94, 0x8e, 0x6e, 0xf0, 0x01, 0xc4, 0xeb, 0x62, 0xc5, 0xd6, 0x8a, 0x64, 0x16,
- 0x73, 0x15, 0x3e, 0x87, 0x48, 0x5e, 0x09, 0xd6, 0x90, 0x9b, 0x07, 0x3e, 0xb7, 0xa7, 0x74, 0x1e,
- 0x4a, 0x17, 0xba, 0x55, 0xe4, 0xae, 0x6d, 0xc8, 0x55, 0x48, 0x60, 0xa2, 0x5a, 0xce, 0x8b, 0xe6,
- 0x17, 0x41, 0x0b, 0xf8, 0x32, 0x7f, 0x07, 0x89, 0x0f, 0xa1, 0x63, 0xd5, 0xdd, 0x79, 0x59, 0xd9,
- 0x68, 0x23, 0xea, 0x4b, 0x3c, 0x83, 0xd4, 0x0c, 0xe4, 0x3b, 0x2b, 0xb5, 0xc1, 0x42, 0xeb, 0x30,
- 0x5c, 0xe4, 0x57, 0x80, 0x4b, 0xa1, 0x58, 0xa3, 0x9d, 0xd3, 0xcf, 0x96, 0x29, 0xbd, 0xad, 0x09,
- 0x76, 0x34, 0xf8, 0x14, 0x22, 0x6b, 0x6e, 0xdd, 0xb2, 0xc5, 0xed, 0xdd, 0x99, 0xf4, 0x68, 0x67,
- 0xa2, 0x98, 0xa8, 0x3e, 0x70, 0x83, 0x90, 0x23, 0x43, 0x4d, 0xe8, 0x70, 0x91, 0xbf, 0x86, 0x7b,
- 0x5b, 0x0f, 0x2b, 0x93, 0xa5, 0x62, 0x83, 0x77, 0x70, 0xc8, 0x3b, 0xff, 0x13, 0xc0, 0x69, 0x2f,
- 0x7f, 0x2f, 0x39, 0x37, 0x33, 0xf0, 0x9d, 0xbf, 0x81, 0x49, 0xd9, 0xdf, 0x38, 0x87, 0x67, 0x23,
- 0x87, 0x3d, 0x82, 0xb9, 0x2f, 0xbd, 0x0c, 0x2f, 0xb6, 0xbf, 0x6e, 0xdf, 0xc6, 0xf5, 0x84, 0xe9,
- 0x25, 0x4c, 0x9c, 0xba, 0x8b, 0xbf, 0x94, 0x42, 0x77, 0xcf, 0x1e, 0xf7, 0x43, 0x72, 0xa5, 0x59,
- 0x81, 0x49, 0xbb, 0xa9, 0x0a, 0xcd, 0x94, 0x5d, 0xb4, 0x6c, 0x71, 0x67, 0x30, 0xfc, 0x62, 0x01,
- 0xea, 0x09, 0xf9, 0x43, 0xb8, 0xbf, 0xd3, 0x63, 0x9f, 0x4a, 0x3e, 0x83, 0xb8, 0xe7, 0x8e, 0xb6,
- 0x24, 0x1c, 0x6f, 0x89, 0x61, 0xc0, 0xb0, 0x52, 0x88, 0x70, 0x2c, 0x0a, 0xce, 0xdc, 0xe8, 0xec,
- 0x79, 0xf1, 0x3b, 0x80, 0xe4, 0x93, 0x7b, 0x19, 0x3f, 0x42, 0x36, 0x4a, 0x1f, 0xcf, 0x76, 0x43,
- 0x1a, 0x6f, 0xc3, 0xf4, 0xd1, 0x35, 0xa8, 0x6b, 0xee, 0x06, 0x52, 0xb8, 0xb5, 0xd5, 0x37, 0x9e,
- 0x1f, 0x0e, 0x7d, 0xfa, 0xf8, 0x5a, 0xdc, 0x7b, 0xae, 0x62, 0xfb, 0x17, 0x79, 0xf5, 0x2f, 0x00,
- 0x00, 0xff, 0xff, 0x94, 0xbb, 0xd9, 0x6f, 0x57, 0x04, 0x00, 0x00,
+ // 805 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x8c, 0x55, 0xcd, 0x6e, 0xe3, 0x36,
+ 0x10, 0x8e, 0x6c, 0xcb, 0xb6, 0x46, 0x8e, 0xeb, 0xb0, 0x69, 0x2b, 0xb8, 0x69, 0x6a, 0x08, 0xfd,
+ 0x09, 0x8a, 0xc0, 0x28, 0xdc, 0x53, 0x81, 0x1e, 0x9a, 0xa6, 0x2e, 0x60, 0xc0, 0x89, 0x5d, 0x36,
+ 0x6d, 0xd0, 0xcb, 0x2e, 0x64, 0x89, 0x8b, 0x68, 0x23, 0x91, 0x8e, 0x48, 0x21, 0xc9, 0x1b, 0xed,
+ 0xfb, 0x2c, 0xf6, 0x59, 0xf6, 0xba, 0x24, 0x25, 0x45, 0x92, 0xd7, 0x31, 0xf6, 0xc6, 0x99, 0x6f,
+ 0xe6, 0xd3, 0x70, 0x66, 0x3e, 0x0a, 0xfa, 0x31, 0xa3, 0x2c, 0xf1, 0xc2, 0x68, 0xbc, 0x4e, 0x98,
+ 0x60, 0xa8, 0x5b, 0xd8, 0xee, 0xbb, 0x06, 0x98, 0x33, 0xce, 0x53, 0x82, 0x4e, 0xa1, 0xed, 0xa5,
+ 0xe2, 0x86, 0x25, 0x8e, 0x31, 0x32, 0x4e, 0xec, 0xc9, 0xe1, 0xf8, 0x29, 0xe9, 0x4c, 0xb0, 0x78,
+ 0x49, 0x12, 0xce, 0x28, 0xce, 0x63, 0xd0, 0xcf, 0x60, 0xad, 0x22, 0xe6, 0xdf, 0x92, 0x60, 0x41,
+ 0x9d, 0xc6, 0xa8, 0x29, 0x13, 0x50, 0x99, 0xa0, 0x19, 0x31, 0x79, 0x85, 0xcb, 0x20, 0xf4, 0x1d,
+ 0x34, 0x7c, 0xdf, 0x69, 0xeb, 0xd0, 0xed, 0xdc, 0x12, 0x47, 0x23, 0xb0, 0x03, 0xc2, 0xfd, 0x24,
+ 0x5c, 0x8b, 0x90, 0x51, 0xa7, 0x2b, 0x4b, 0xb1, 0x70, 0xd5, 0x85, 0xfa, 0xd0, 0x08, 0x03, 0xc7,
+ 0x92, 0x80, 0x89, 0xe5, 0x09, 0x1d, 0x03, 0xf8, 0x2c, 0x5e, 0x33, 0x4a, 0xa8, 0xe0, 0x0e, 0x48,
+ 0x7e, 0x0b, 0x57, 0x3c, 0xe8, 0x4b, 0x68, 0x47, 0xde, 0x8a, 0x44, 0xdc, 0xb1, 0x35, 0x96, 0x5b,
+ 0xe8, 0x27, 0x30, 0xd9, 0x3d, 0x25, 0x89, 0xd3, 0xdb, 0x71, 0xdd, 0x2c, 0x44, 0x71, 0x70, 0xe1,
+ 0x89, 0x94, 0x3b, 0x07, 0xba, 0xa0, 0xdc, 0x42, 0x0e, 0x74, 0x78, 0x1a, 0xc7, 0x5e, 0xf2, 0xe8,
+ 0x20, 0x0d, 0x14, 0xa6, 0xfb, 0x07, 0x74, 0x8b, 0x26, 0xa8, 0xa8, 0x50, 0x9d, 0x67, 0x81, 0x6e,
+ 0xad, 0x89, 0x0b, 0x13, 0x1d, 0x81, 0x25, 0x07, 0xf2, 0x9a, 0xf8, 0x42, 0x62, 0x0d, 0xcd, 0x50,
+ 0x3a, 0xdc, 0x7b, 0x40, 0x33, 0xca, 0x49, 0x22, 0x72, 0xa6, 0xbb, 0x94, 0x70, 0x51, 0xcf, 0x31,
+ 0x36, 0x72, 0xd0, 0xf7, 0x60, 0x6a, 0x72, 0xcd, 0x66, 0x4f, 0x3e, 0xdb, 0x9c, 0x49, 0x86, 0x2a,
+ 0x12, 0x4e, 0x68, 0x30, 0x8d, 0x25, 0xe2, 0x34, 0x65, 0x68, 0x17, 0x97, 0x0e, 0xf7, 0x37, 0xf8,
+ 0xbc, 0xf6, 0x61, 0x2e, 0x7b, 0xc9, 0x49, 0xc9, 0x6d, 0xec, 0xe2, 0x76, 0xdf, 0x1a, 0x70, 0x98,
+ 0xa5, 0x9f, 0xb3, 0x38, 0x96, 0x33, 0x28, 0x2a, 0xff, 0x1d, 0x3a, 0x7e, 0xe6, 0xc9, 0x19, 0x7e,
+ 0xa8, 0x30, 0x6c, 0x49, 0x18, 0x17, 0x66, 0x91, 0x86, 0x4e, 0xea, 0xb7, 0xdb, 0xb6, 0x71, 0x59,
+ 0xc0, 0x70, 0x01, 0x9d, 0x3c, 0x5b, 0xb5, 0xdf, 0x67, 0x54, 0xa8, 0xcf, 0xb6, 0xb2, 0x21, 0xe5,
+ 0xa6, 0x5c, 0x81, 0x4e, 0xba, 0x0e, 0x3c, 0x41, 0xb8, 0x5e, 0x34, 0x7b, 0x32, 0x28, 0x09, 0xff,
+ 0xd5, 0x00, 0x2e, 0x02, 0xdc, 0xaf, 0xe0, 0x8b, 0x8d, 0x1a, 0xb3, 0xae, 0xb8, 0x6f, 0x5a, 0x70,
+ 0xa0, 0xbf, 0xce, 0xe7, 0x21, 0x17, 0x9f, 0x36, 0xa5, 0x53, 0x38, 0xf0, 0x82, 0x20, 0x54, 0xfb,
+ 0xec, 0x45, 0xcb, 0xcc, 0xad, 0x55, 0x64, 0xe1, 0x8f, 0x01, 0xf4, 0x2b, 0x34, 0x7d, 0x8f, 0xea,
+ 0x31, 0xf5, 0x27, 0x3f, 0x6e, 0xdc, 0xb9, 0xfa, 0xd5, 0xf1, 0xb9, 0x47, 0x29, 0x09, 0xfe, 0x4e,
+ 0x49, 0xf2, 0x88, 0x55, 0x0e, 0x3a, 0x04, 0x53, 0xaf, 0x7b, 0x7e, 0xf3, 0xcc, 0x50, 0x92, 0x89,
+ 0xbd, 0x07, 0x79, 0x83, 0x34, 0x92, 0x92, 0x31, 0xf5, 0x4e, 0x56, 0x3c, 0x2a, 0x2b, 0x93, 0x46,
+ 0x3b, 0xcb, 0xca, 0x44, 0xe0, 0x42, 0x6f, 0x9d, 0xae, 0xa2, 0x90, 0xdf, 0x90, 0xe0, 0xc2, 0x7b,
+ 0x70, 0x3a, 0x12, 0x6c, 0xe2, 0x9a, 0xaf, 0x1e, 0x13, 0x66, 0xfa, 0xad, 0xc5, 0x84, 0x14, 0xf5,
+ 0xc0, 0xb8, 0xd3, 0xfa, 0xb5, 0xb0, 0x71, 0x87, 0x10, 0xb4, 0x38, 0x4b, 0x84, 0x14, 0xae, 0x72,
+ 0xe8, 0xb3, 0xaa, 0x4f, 0x0a, 0x4c, 0xae, 0x1f, 0x0d, 0xc8, 0x83, 0x94, 0xad, 0xae, 0xaf, 0xf4,
+ 0x54, 0xe4, 0xd8, 0xab, 0xc9, 0x51, 0xe6, 0x65, 0xe3, 0xd2, 0xf5, 0xed, 0xeb, 0x6f, 0x57, 0x3c,
+ 0x55, 0x5c, 0xd6, 0xd6, 0xaf, 0xe3, 0x21, 0x75, 0x5f, 0x80, 0x5d, 0xe9, 0x20, 0xea, 0x40, 0xf3,
+ 0x6c, 0x3e, 0x1f, 0xec, 0xa9, 0xc3, 0xe5, 0xf4, 0x7a, 0x60, 0xa0, 0x2e, 0xb4, 0x16, 0xcb, 0xe9,
+ 0xe5, 0xa0, 0x81, 0x2c, 0x30, 0x17, 0xd7, 0x97, 0xd3, 0x3f, 0x07, 0x4d, 0x79, 0x9f, 0x2e, 0x9e,
+ 0x2e, 0x17, 0xf8, 0x4a, 0x5a, 0x2d, 0x64, 0x43, 0xe7, 0x9f, 0xab, 0x33, 0x8c, 0xa5, 0x61, 0xa2,
+ 0x7d, 0xb0, 0xae, 0x16, 0x2f, 0xff, 0x9b, 0xe2, 0xd9, 0x5f, 0xff, 0x0f, 0xda, 0x2e, 0x97, 0x82,
+ 0xae, 0xcc, 0xac, 0x22, 0x2b, 0x41, 0x62, 0x9e, 0x3f, 0xa3, 0x5b, 0x64, 0xa5, 0x50, 0xd5, 0x5a,
+ 0xc1, 0x84, 0x17, 0x15, 0x63, 0x6b, 0xea, 0xb6, 0xd4, 0x7c, 0xaa, 0x99, 0xb7, 0x21, 0x0d, 0xf2,
+ 0x69, 0xeb, 0xb3, 0x3b, 0x82, 0x76, 0xb6, 0xcb, 0x95, 0xb6, 0x35, 0xaa, 0x6d, 0x93, 0x11, 0x50,
+ 0x3e, 0x79, 0x8a, 0x83, 0x7a, 0x31, 0xc9, 0x97, 0x56, 0x9f, 0x27, 0xef, 0x0d, 0xe8, 0x5e, 0xe4,
+ 0x55, 0xa1, 0x39, 0xd8, 0x95, 0xd7, 0x01, 0x1d, 0x6d, 0x8a, 0xb8, 0xfa, 0x5a, 0x0d, 0xbf, 0x79,
+ 0x06, 0xcd, 0xc5, 0xb3, 0x87, 0x30, 0xec, 0xd7, 0x74, 0x85, 0x8e, 0x77, 0x3f, 0x0a, 0xc3, 0x6f,
+ 0x9f, 0xc5, 0x9f, 0x38, 0x67, 0x00, 0x65, 0x9f, 0xd1, 0xd7, 0x3b, 0x14, 0x33, 0x3c, 0xda, 0x0e,
+ 0x16, 0x54, 0xab, 0xb6, 0xfe, 0x61, 0xfe, 0xf2, 0x21, 0x00, 0x00, 0xff, 0xff, 0x7d, 0xdd, 0x47,
+ 0xda, 0x42, 0x07, 0x00, 0x00,
}
« no previous file with comments | « go/src/infra/monorail/monorail.proto ('k') | go/src/infra/monorail/pb.discovery.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698