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

Unified Diff: milo/common/config/settings.pb.go

Issue 2760873003: Milo: Use luci-config for storing buildbot acls (Closed)
Patch Set: Review Created 3 years, 9 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
« milo/common/config/settings.proto ('K') | « milo/common/config/settings.proto ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/common/config/settings.pb.go
diff --git a/milo/common/config/settings.pb.go b/milo/common/config/settings.pb.go
new file mode 100644
index 0000000000000000000000000000000000000000..c03b833cf350ab63d50076cd7229960885c0c456
--- /dev/null
+++ b/milo/common/config/settings.pb.go
@@ -0,0 +1,73 @@
+// Code generated by protoc-gen-go.
+// source: github.com/luci/luci-go/milo/common/config/settings.proto
+// DO NOT EDIT!
+
+package config
+
+import proto "github.com/golang/protobuf/proto"
+import fmt "fmt"
+import math "math"
+
+// Reference imports to suppress errors if they are not otherwise used.
+var _ = proto.Marshal
+var _ = fmt.Errorf
+var _ = math.Inf
+
+// Settings represents the format for the global (service) config for Milo.
+type Settings struct {
+ Buildbot *Settings_Buildbot `protobuf:"bytes,1,opt,name=buildbot" json:"buildbot,omitempty"`
+}
+
+func (m *Settings) Reset() { *m = Settings{} }
+func (m *Settings) String() string { return proto.CompactTextString(m) }
+func (*Settings) ProtoMessage() {}
+func (*Settings) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{0} }
+
+func (m *Settings) GetBuildbot() *Settings_Buildbot {
+ if m != nil {
+ return m.Buildbot
+ }
+ return nil
+}
+
+type Settings_Buildbot struct {
+ // buildbot_reader is the infra-auth group that is allowed to read internal
+ // buildbot data.
+ BuildbotInternalReader string `protobuf:"bytes,1,opt,name=buildbot_internal_reader,json=buildbotInternalReader" json:"buildbot_internal_reader,omitempty"`
+}
+
+func (m *Settings_Buildbot) Reset() { *m = Settings_Buildbot{} }
+func (m *Settings_Buildbot) String() string { return proto.CompactTextString(m) }
+func (*Settings_Buildbot) ProtoMessage() {}
+func (*Settings_Buildbot) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{0, 0} }
+
+func (m *Settings_Buildbot) GetBuildbotInternalReader() string {
+ if m != nil {
+ return m.BuildbotInternalReader
+ }
+ return ""
+}
+
+func init() {
+ proto.RegisterType((*Settings)(nil), "config.Settings")
+ proto.RegisterType((*Settings_Buildbot)(nil), "config.Settings.Buildbot")
+}
+
+func init() {
+ proto.RegisterFile("github.com/luci/luci-go/milo/common/config/settings.proto", fileDescriptor1)
+}
+
+var fileDescriptor1 = []byte{
+ // 170 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xb2, 0x4c, 0xcf, 0x2c, 0xc9,
+ 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0xcf, 0x29, 0x4d, 0xce, 0x04, 0x13, 0xba, 0xe9, 0xf9,
+ 0xfa, 0xb9, 0x99, 0x39, 0xf9, 0xfa, 0xc9, 0xf9, 0xb9, 0xb9, 0xf9, 0x79, 0xfa, 0xc9, 0xf9, 0x79,
+ 0x69, 0x99, 0xe9, 0xfa, 0xc5, 0xa9, 0x25, 0x25, 0x99, 0x79, 0xe9, 0xc5, 0x7a, 0x05, 0x45, 0xf9,
+ 0x25, 0xf9, 0x42, 0x6c, 0x10, 0x61, 0xa5, 0x76, 0x46, 0x2e, 0x8e, 0x60, 0xa8, 0x94, 0x90, 0x29,
+ 0x17, 0x47, 0x52, 0x69, 0x66, 0x4e, 0x4a, 0x52, 0x7e, 0x89, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0xb7,
+ 0x91, 0xa4, 0x1e, 0x44, 0x9d, 0x1e, 0x4c, 0x8d, 0x9e, 0x13, 0x54, 0x41, 0x10, 0x5c, 0xa9, 0x94,
+ 0x0b, 0x17, 0x07, 0x4c, 0x54, 0xc8, 0x82, 0x4b, 0x02, 0x26, 0x1e, 0x9f, 0x99, 0x57, 0x92, 0x5a,
+ 0x94, 0x97, 0x98, 0x13, 0x5f, 0x94, 0x9a, 0x98, 0x92, 0x5a, 0x04, 0x36, 0x92, 0x33, 0x48, 0x0c,
+ 0x26, 0xef, 0x09, 0x95, 0x0e, 0x02, 0xcb, 0x26, 0xb1, 0x81, 0x1d, 0x66, 0x0c, 0x08, 0x00, 0x00,
+ 0xff, 0xff, 0x81, 0x24, 0x75, 0xc3, 0xd5, 0x00, 0x00, 0x00,
+}
« milo/common/config/settings.proto ('K') | « milo/common/config/settings.proto ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698