| OLD | NEW |
| (Empty) | |
| 1 // Code generated by protoc-gen-go. |
| 2 // source: github.com/luci/luci-go/milo/common/config/settings.proto |
| 3 // DO NOT EDIT! |
| 4 |
| 5 package config |
| 6 |
| 7 import proto "github.com/golang/protobuf/proto" |
| 8 import fmt "fmt" |
| 9 import math "math" |
| 10 |
| 11 // Reference imports to suppress errors if they are not otherwise used. |
| 12 var _ = proto.Marshal |
| 13 var _ = fmt.Errorf |
| 14 var _ = math.Inf |
| 15 |
| 16 // Settings represents the format for the global (service) config for Milo. |
| 17 type Settings struct { |
| 18 Buildbot *Settings_Buildbot `protobuf:"bytes,1,opt,name=buildbot" json:"
buildbot,omitempty"` |
| 19 } |
| 20 |
| 21 func (m *Settings) Reset() { *m = Settings{} } |
| 22 func (m *Settings) String() string { return proto.CompactTextString(m
) } |
| 23 func (*Settings) ProtoMessage() {} |
| 24 func (*Settings) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{0}
} |
| 25 |
| 26 func (m *Settings) GetBuildbot() *Settings_Buildbot { |
| 27 if m != nil { |
| 28 return m.Buildbot |
| 29 } |
| 30 return nil |
| 31 } |
| 32 |
| 33 type Settings_Buildbot struct { |
| 34 // buildbot_reader is the infra-auth group that is allowed to read inter
nal |
| 35 // buildbot data. |
| 36 BuildbotInternalReader string `protobuf:"bytes,1,opt,name=buildbot_inter
nal_reader,json=buildbotInternalReader" json:"buildbot_internal_reader,omitempty
"` |
| 37 } |
| 38 |
| 39 func (m *Settings_Buildbot) Reset() { *m = Settings_Buildbot{
} } |
| 40 func (m *Settings_Buildbot) String() string { return proto.CompactTex
tString(m) } |
| 41 func (*Settings_Buildbot) ProtoMessage() {} |
| 42 func (*Settings_Buildbot) Descriptor() ([]byte, []int) { return fileDescriptor1,
[]int{0, 0} } |
| 43 |
| 44 func (m *Settings_Buildbot) GetBuildbotInternalReader() string { |
| 45 if m != nil { |
| 46 return m.BuildbotInternalReader |
| 47 } |
| 48 return "" |
| 49 } |
| 50 |
| 51 func init() { |
| 52 proto.RegisterType((*Settings)(nil), "config.Settings") |
| 53 proto.RegisterType((*Settings_Buildbot)(nil), "config.Settings.Buildbot"
) |
| 54 } |
| 55 |
| 56 func init() { |
| 57 proto.RegisterFile("github.com/luci/luci-go/milo/common/config/settings.
proto", fileDescriptor1) |
| 58 } |
| 59 |
| 60 var fileDescriptor1 = []byte{ |
| 61 // 170 bytes of a gzipped FileDescriptorProto |
| 62 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xb2,
0x4c, 0xcf, 0x2c, 0xc9, |
| 63 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0xcf, 0x29, 0x4d, 0xce, 0x04,
0x13, 0xba, 0xe9, 0xf9, |
| 64 0xfa, 0xb9, 0x99, 0x39, 0xf9, 0xfa, 0xc9, 0xf9, 0xb9, 0xb9, 0xf9, 0x79,
0xfa, 0xc9, 0xf9, 0x79, |
| 65 0x69, 0x99, 0xe9, 0xfa, 0xc5, 0xa9, 0x25, 0x25, 0x99, 0x79, 0xe9, 0xc5,
0x7a, 0x05, 0x45, 0xf9, |
| 66 0x25, 0xf9, 0x42, 0x6c, 0x10, 0x61, 0xa5, 0x76, 0x46, 0x2e, 0x8e, 0x60,
0xa8, 0x94, 0x90, 0x29, |
| 67 0x17, 0x47, 0x52, 0x69, 0x66, 0x4e, 0x4a, 0x52, 0x7e, 0x89, 0x04, 0xa3,
0x02, 0xa3, 0x06, 0xb7, |
| 68 0x91, 0xa4, 0x1e, 0x44, 0x9d, 0x1e, 0x4c, 0x8d, 0x9e, 0x13, 0x54, 0x41,
0x10, 0x5c, 0xa9, 0x94, |
| 69 0x0b, 0x17, 0x07, 0x4c, 0x54, 0xc8, 0x82, 0x4b, 0x02, 0x26, 0x1e, 0x9f,
0x99, 0x57, 0x92, 0x5a, |
| 70 0x94, 0x97, 0x98, 0x13, 0x5f, 0x94, 0x9a, 0x98, 0x92, 0x5a, 0x04, 0x36,
0x92, 0x33, 0x48, 0x0c, |
| 71 0x26, 0xef, 0x09, 0x95, 0x0e, 0x02, 0xcb, 0x26, 0xb1, 0x81, 0x1d, 0x66,
0x0c, 0x08, 0x00, 0x00, |
| 72 0xff, 0xff, 0x81, 0x24, 0x75, 0xc3, 0xd5, 0x00, 0x00, 0x00, |
| 73 } |
| OLD | NEW |