249 lines
8.0 KiB
Go
249 lines
8.0 KiB
Go
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||
|
// source: events.proto
|
||
|
|
||
|
package witProtobuf
|
||
|
|
||
|
import (
|
||
|
fmt "fmt"
|
||
|
proto "github.com/golang/protobuf/proto"
|
||
|
math "math"
|
||
|
)
|
||
|
|
||
|
// Reference imports to suppress errors if they are not otherwise used.
|
||
|
var _ = proto.Marshal
|
||
|
var _ = fmt.Errorf
|
||
|
var _ = math.Inf
|
||
|
|
||
|
// This is a compile-time assertion to ensure that this generated file
|
||
|
// is compatible with the proto package it is being compiled against.
|
||
|
// A compilation error at this line likely means your copy of the
|
||
|
// proto package needs to be updated.
|
||
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
||
|
|
||
|
type Event_EventType int32
|
||
|
|
||
|
const (
|
||
|
Event_ADD Event_EventType = 0
|
||
|
Event_DELETE Event_EventType = 1
|
||
|
Event_POWERON Event_EventType = 2
|
||
|
Event_POWEROFF Event_EventType = 3
|
||
|
Event_HYBERNATE Event_EventType = 4
|
||
|
Event_MIGRATE Event_EventType = 5
|
||
|
)
|
||
|
|
||
|
var Event_EventType_name = map[int32]string{
|
||
|
0: "ADD",
|
||
|
1: "DELETE",
|
||
|
2: "POWERON",
|
||
|
3: "POWEROFF",
|
||
|
4: "HYBERNATE",
|
||
|
5: "MIGRATE",
|
||
|
}
|
||
|
|
||
|
var Event_EventType_value = map[string]int32{
|
||
|
"ADD": 0,
|
||
|
"DELETE": 1,
|
||
|
"POWERON": 2,
|
||
|
"POWEROFF": 3,
|
||
|
"HYBERNATE": 4,
|
||
|
"MIGRATE": 5,
|
||
|
}
|
||
|
|
||
|
func (x Event_EventType) String() string {
|
||
|
return proto.EnumName(Event_EventType_name, int32(x))
|
||
|
}
|
||
|
|
||
|
func (Event_EventType) EnumDescriptor() ([]byte, []int) {
|
||
|
return fileDescriptor_8f22242cb04491f9, []int{0, 0}
|
||
|
}
|
||
|
|
||
|
type Event struct {
|
||
|
Type Event_EventType `protobuf:"varint,1,opt,name=type,proto3,enum=witProtobuf.Event_EventType" json:"type,omitempty"`
|
||
|
Id int32 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
|
||
|
Results []*Event_Response `protobuf:"bytes,3,rep,name=results,proto3" json:"results,omitempty"`
|
||
|
Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
|
||
|
Comment string `protobuf:"bytes,5,opt,name=comment,proto3" json:"comment,omitempty"`
|
||
|
Email string `protobuf:"bytes,6,opt,name=email,proto3" json:"email,omitempty"`
|
||
|
Reps []int64 `protobuf:"varint,7,rep,packed,name=reps,proto3" json:"reps,omitempty"`
|
||
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
XXX_sizecache int32 `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *Event) Reset() { *m = Event{} }
|
||
|
func (m *Event) String() string { return proto.CompactTextString(m) }
|
||
|
func (*Event) ProtoMessage() {}
|
||
|
func (*Event) Descriptor() ([]byte, []int) {
|
||
|
return fileDescriptor_8f22242cb04491f9, []int{0}
|
||
|
}
|
||
|
|
||
|
func (m *Event) XXX_Unmarshal(b []byte) error {
|
||
|
return xxx_messageInfo_Event.Unmarshal(m, b)
|
||
|
}
|
||
|
func (m *Event) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||
|
return xxx_messageInfo_Event.Marshal(b, m, deterministic)
|
||
|
}
|
||
|
func (m *Event) XXX_Merge(src proto.Message) {
|
||
|
xxx_messageInfo_Event.Merge(m, src)
|
||
|
}
|
||
|
func (m *Event) XXX_Size() int {
|
||
|
return xxx_messageInfo_Event.Size(m)
|
||
|
}
|
||
|
func (m *Event) XXX_DiscardUnknown() {
|
||
|
xxx_messageInfo_Event.DiscardUnknown(m)
|
||
|
}
|
||
|
|
||
|
var xxx_messageInfo_Event proto.InternalMessageInfo
|
||
|
|
||
|
func (m *Event) GetType() Event_EventType {
|
||
|
if m != nil {
|
||
|
return m.Type
|
||
|
}
|
||
|
return Event_ADD
|
||
|
}
|
||
|
|
||
|
func (m *Event) GetId() int32 {
|
||
|
if m != nil {
|
||
|
return m.Id
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (m *Event) GetResults() []*Event_Response {
|
||
|
if m != nil {
|
||
|
return m.Results
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *Event) GetName() string {
|
||
|
if m != nil {
|
||
|
return m.Name
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *Event) GetComment() string {
|
||
|
if m != nil {
|
||
|
return m.Comment
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *Event) GetEmail() string {
|
||
|
if m != nil {
|
||
|
return m.Email
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *Event) GetReps() []int64 {
|
||
|
if m != nil {
|
||
|
return m.Reps
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type Event_Response struct {
|
||
|
Type Event_EventType `protobuf:"varint,1,opt,name=type,proto3,enum=witProtobuf.Event_EventType" json:"type,omitempty"`
|
||
|
Id int32 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
|
||
|
Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
|
||
|
Error string `protobuf:"bytes,4,opt,name=error,proto3" json:"error,omitempty"`
|
||
|
Snippets []string `protobuf:"bytes,5,rep,name=snippets,proto3" json:"snippets,omitempty"`
|
||
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
XXX_sizecache int32 `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *Event_Response) Reset() { *m = Event_Response{} }
|
||
|
func (m *Event_Response) String() string { return proto.CompactTextString(m) }
|
||
|
func (*Event_Response) ProtoMessage() {}
|
||
|
func (*Event_Response) Descriptor() ([]byte, []int) {
|
||
|
return fileDescriptor_8f22242cb04491f9, []int{0, 0}
|
||
|
}
|
||
|
|
||
|
func (m *Event_Response) XXX_Unmarshal(b []byte) error {
|
||
|
return xxx_messageInfo_Event_Response.Unmarshal(m, b)
|
||
|
}
|
||
|
func (m *Event_Response) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||
|
return xxx_messageInfo_Event_Response.Marshal(b, m, deterministic)
|
||
|
}
|
||
|
func (m *Event_Response) XXX_Merge(src proto.Message) {
|
||
|
xxx_messageInfo_Event_Response.Merge(m, src)
|
||
|
}
|
||
|
func (m *Event_Response) XXX_Size() int {
|
||
|
return xxx_messageInfo_Event_Response.Size(m)
|
||
|
}
|
||
|
func (m *Event_Response) XXX_DiscardUnknown() {
|
||
|
xxx_messageInfo_Event_Response.DiscardUnknown(m)
|
||
|
}
|
||
|
|
||
|
var xxx_messageInfo_Event_Response proto.InternalMessageInfo
|
||
|
|
||
|
func (m *Event_Response) GetType() Event_EventType {
|
||
|
if m != nil {
|
||
|
return m.Type
|
||
|
}
|
||
|
return Event_ADD
|
||
|
}
|
||
|
|
||
|
func (m *Event_Response) GetId() int32 {
|
||
|
if m != nil {
|
||
|
return m.Id
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (m *Event_Response) GetName() string {
|
||
|
if m != nil {
|
||
|
return m.Name
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *Event_Response) GetError() string {
|
||
|
if m != nil {
|
||
|
return m.Error
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *Event_Response) GetSnippets() []string {
|
||
|
if m != nil {
|
||
|
return m.Snippets
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
proto.RegisterEnum("witProtobuf.Event_EventType", Event_EventType_name, Event_EventType_value)
|
||
|
proto.RegisterType((*Event)(nil), "witProtobuf.Event")
|
||
|
proto.RegisterType((*Event_Response)(nil), "witProtobuf.Event.Response")
|
||
|
}
|
||
|
|
||
|
func init() { proto.RegisterFile("events.proto", fileDescriptor_8f22242cb04491f9) }
|
||
|
|
||
|
var fileDescriptor_8f22242cb04491f9 = []byte{
|
||
|
// 310 bytes of a gzipped FileDescriptorProto
|
||
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x91, 0xc1, 0x6a, 0xf2, 0x40,
|
||
|
0x10, 0xc7, 0xbf, 0x64, 0x13, 0x63, 0x46, 0x3f, 0x09, 0x43, 0x0f, 0x8b, 0xed, 0x21, 0x78, 0xca,
|
||
|
0x49, 0x8a, 0xa5, 0x0f, 0x60, 0x71, 0x6d, 0x0b, 0xad, 0xca, 0x12, 0x90, 0x1e, 0xb5, 0x4e, 0x21,
|
||
|
0x60, 0x92, 0x25, 0xbb, 0xb6, 0xf8, 0x1a, 0x7d, 0xa8, 0x3e, 0x57, 0xc9, 0xa6, 0x11, 0x0f, 0x3d,
|
||
|
0xf6, 0xb2, 0xcc, 0x6f, 0xf6, 0xc7, 0xcc, 0x7f, 0x59, 0xe8, 0xd3, 0x3b, 0x15, 0x46, 0x8f, 0x55,
|
||
|
0x55, 0x9a, 0x12, 0x7b, 0x1f, 0x99, 0x59, 0xd5, 0xd5, 0xf6, 0xf0, 0x36, 0xfa, 0x62, 0xe0, 0x8b,
|
||
|
0xfa, 0x16, 0xaf, 0xc1, 0x33, 0x47, 0x45, 0xdc, 0x89, 0x9d, 0x64, 0x30, 0xb9, 0x1a, 0x9f, 0x59,
|
||
|
0x63, 0x6b, 0x34, 0x67, 0x7a, 0x54, 0x24, 0xad, 0x89, 0x03, 0x70, 0xb3, 0x1d, 0x77, 0x63, 0x27,
|
||
|
0xf1, 0xa5, 0x9b, 0xed, 0xf0, 0x16, 0x82, 0x8a, 0xf4, 0x61, 0x6f, 0x34, 0x67, 0x31, 0x4b, 0x7a,
|
||
|
0x93, 0xcb, 0x5f, 0x86, 0x48, 0xd2, 0xaa, 0x2c, 0x34, 0xc9, 0xd6, 0x45, 0x04, 0xaf, 0xd8, 0xe4,
|
||
|
0xc4, 0xbd, 0xd8, 0x49, 0x42, 0x69, 0x6b, 0xe4, 0x10, 0xbc, 0x96, 0x79, 0x4e, 0x85, 0xe1, 0xbe,
|
||
|
0x6d, 0xb7, 0x88, 0x17, 0xe0, 0x53, 0xbe, 0xc9, 0xf6, 0xbc, 0x63, 0xfb, 0x0d, 0xd4, 0x33, 0x2a,
|
||
|
0x52, 0x9a, 0x07, 0x31, 0x4b, 0x98, 0xb4, 0xf5, 0xf0, 0xd3, 0x81, 0x6e, 0xbb, 0xed, 0x0f, 0x5e,
|
||
|
0xd7, 0xc6, 0x64, 0x67, 0x31, 0xeb, 0x30, 0x55, 0x55, 0x56, 0x3f, 0xd9, 0x1b, 0xc0, 0x21, 0x74,
|
||
|
0x75, 0x91, 0x29, 0x45, 0x46, 0x73, 0x3f, 0x66, 0x49, 0x28, 0x4f, 0x3c, 0x5a, 0x43, 0x78, 0x5a,
|
||
|
0x84, 0x01, 0xb0, 0xe9, 0x6c, 0x16, 0xfd, 0x43, 0x80, 0xce, 0x4c, 0x3c, 0x89, 0x54, 0x44, 0x0e,
|
||
|
0xf6, 0x20, 0x58, 0x2d, 0xd7, 0x42, 0x2e, 0x17, 0x91, 0x8b, 0x7d, 0xe8, 0x36, 0x30, 0x9f, 0x47,
|
||
|
0x0c, 0xff, 0x43, 0xf8, 0xf0, 0x72, 0x27, 0xe4, 0x62, 0x9a, 0x8a, 0xc8, 0xab, 0xcd, 0xe7, 0xc7,
|
||
|
0x7b, 0x59, 0x83, 0xbf, 0xed, 0xd8, 0xcf, 0xbd, 0xf9, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x7d, 0x92,
|
||
|
0x48, 0xe1, 0xec, 0x01, 0x00, 0x00,
|
||
|
}
|