2017-11-06 19:53:54 +00:00
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
|
// source: Shared.proto
|
|
|
|
|
|
|
|
package generated
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
type Empty struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Empty) Reset() { *m = Empty{} }
|
|
|
|
func (m *Empty) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Empty) ProtoMessage() {}
|
2018-05-13 13:28:09 +00:00
|
|
|
func (*Empty) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{0} }
|
2017-11-06 19:53:54 +00:00
|
|
|
|
|
|
|
type InitRequest struct {
|
2018-05-13 13:28:09 +00:00
|
|
|
Plugin string `protobuf:"bytes,1,opt,name=plugin" json:"plugin,omitempty"`
|
|
|
|
Config map[string]string `protobuf:"bytes,2,rep,name=config" json:"config,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
2017-11-06 19:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *InitRequest) Reset() { *m = InitRequest{} }
|
|
|
|
func (m *InitRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*InitRequest) ProtoMessage() {}
|
2018-05-13 13:28:09 +00:00
|
|
|
func (*InitRequest) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{1} }
|
|
|
|
|
|
|
|
func (m *InitRequest) GetPlugin() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Plugin
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
2017-11-06 19:53:54 +00:00
|
|
|
|
|
|
|
func (m *InitRequest) GetConfig() map[string]string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Config
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-05-13 13:28:09 +00:00
|
|
|
type AppliesToRequest struct {
|
|
|
|
Plugin string `protobuf:"bytes,1,opt,name=plugin" json:"plugin,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *AppliesToRequest) Reset() { *m = AppliesToRequest{} }
|
|
|
|
func (m *AppliesToRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*AppliesToRequest) ProtoMessage() {}
|
|
|
|
func (*AppliesToRequest) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{2} }
|
|
|
|
|
|
|
|
func (m *AppliesToRequest) GetPlugin() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Plugin
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2017-11-21 17:24:43 +00:00
|
|
|
type AppliesToResponse struct {
|
|
|
|
IncludedNamespaces []string `protobuf:"bytes,1,rep,name=includedNamespaces" json:"includedNamespaces,omitempty"`
|
|
|
|
ExcludedNamespaces []string `protobuf:"bytes,2,rep,name=excludedNamespaces" json:"excludedNamespaces,omitempty"`
|
|
|
|
IncludedResources []string `protobuf:"bytes,3,rep,name=includedResources" json:"includedResources,omitempty"`
|
|
|
|
ExcludedResources []string `protobuf:"bytes,4,rep,name=excludedResources" json:"excludedResources,omitempty"`
|
|
|
|
Selector string `protobuf:"bytes,5,opt,name=selector" json:"selector,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *AppliesToResponse) Reset() { *m = AppliesToResponse{} }
|
|
|
|
func (m *AppliesToResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*AppliesToResponse) ProtoMessage() {}
|
2018-05-13 13:28:09 +00:00
|
|
|
func (*AppliesToResponse) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{3} }
|
2017-11-21 17:24:43 +00:00
|
|
|
|
|
|
|
func (m *AppliesToResponse) GetIncludedNamespaces() []string {
|
|
|
|
if m != nil {
|
|
|
|
return m.IncludedNamespaces
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *AppliesToResponse) GetExcludedNamespaces() []string {
|
|
|
|
if m != nil {
|
|
|
|
return m.ExcludedNamespaces
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *AppliesToResponse) GetIncludedResources() []string {
|
|
|
|
if m != nil {
|
|
|
|
return m.IncludedResources
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *AppliesToResponse) GetExcludedResources() []string {
|
|
|
|
if m != nil {
|
|
|
|
return m.ExcludedResources
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *AppliesToResponse) GetSelector() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Selector
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-03-19 15:40:36 +00:00
|
|
|
type Stack struct {
|
|
|
|
Frames []*StackFrame `protobuf:"bytes,1,rep,name=frames" json:"frames,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Stack) Reset() { *m = Stack{} }
|
|
|
|
func (m *Stack) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Stack) ProtoMessage() {}
|
|
|
|
func (*Stack) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{4} }
|
|
|
|
|
|
|
|
func (m *Stack) GetFrames() []*StackFrame {
|
|
|
|
if m != nil {
|
|
|
|
return m.Frames
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type StackFrame struct {
|
|
|
|
File string `protobuf:"bytes,1,opt,name=file" json:"file,omitempty"`
|
|
|
|
Line int32 `protobuf:"varint,2,opt,name=line" json:"line,omitempty"`
|
|
|
|
Function string `protobuf:"bytes,3,opt,name=function" json:"function,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *StackFrame) Reset() { *m = StackFrame{} }
|
|
|
|
func (m *StackFrame) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*StackFrame) ProtoMessage() {}
|
|
|
|
func (*StackFrame) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{5} }
|
|
|
|
|
|
|
|
func (m *StackFrame) GetFile() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.File
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *StackFrame) GetLine() int32 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Line
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *StackFrame) GetFunction() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Function
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2017-11-06 19:53:54 +00:00
|
|
|
func init() {
|
|
|
|
proto.RegisterType((*Empty)(nil), "generated.Empty")
|
|
|
|
proto.RegisterType((*InitRequest)(nil), "generated.InitRequest")
|
2018-05-13 13:28:09 +00:00
|
|
|
proto.RegisterType((*AppliesToRequest)(nil), "generated.AppliesToRequest")
|
2017-11-21 17:24:43 +00:00
|
|
|
proto.RegisterType((*AppliesToResponse)(nil), "generated.AppliesToResponse")
|
2019-03-19 15:40:36 +00:00
|
|
|
proto.RegisterType((*Stack)(nil), "generated.Stack")
|
|
|
|
proto.RegisterType((*StackFrame)(nil), "generated.StackFrame")
|
2017-11-06 19:53:54 +00:00
|
|
|
}
|
|
|
|
|
2018-05-13 13:28:09 +00:00
|
|
|
func init() { proto.RegisterFile("Shared.proto", fileDescriptor5) }
|
|
|
|
|
|
|
|
var fileDescriptor5 = []byte{
|
2019-03-19 15:40:36 +00:00
|
|
|
// 345 bytes of a gzipped FileDescriptorProto
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0xc1, 0x4a, 0xeb, 0x40,
|
|
|
|
0x14, 0x86, 0x49, 0xd2, 0xe4, 0xde, 0x9e, 0xdc, 0x45, 0x3b, 0x5c, 0x25, 0x74, 0x55, 0xb2, 0x2a,
|
|
|
|
0xa2, 0x59, 0x54, 0x10, 0xed, 0x4e, 0xa4, 0x82, 0x1b, 0x91, 0xd4, 0x17, 0x88, 0xc9, 0x49, 0x1d,
|
|
|
|
0x9a, 0xce, 0x8c, 0x33, 0x13, 0xb1, 0xef, 0xe2, 0x1b, 0xfa, 0x12, 0x32, 0x93, 0xb4, 0x0d, 0x44,
|
|
|
|
0x70, 0x77, 0xce, 0xff, 0x7f, 0xf3, 0xf3, 0x4f, 0x26, 0xf0, 0x6f, 0xf5, 0x9a, 0x49, 0x2c, 0x12,
|
|
|
|
0x21, 0xb9, 0xe6, 0x64, 0xb8, 0x46, 0x86, 0x32, 0xd3, 0x58, 0xc4, 0x7f, 0xc0, 0x5f, 0x6e, 0x85,
|
|
|
|
0xde, 0xc5, 0x9f, 0x0e, 0x84, 0x0f, 0x8c, 0xea, 0x14, 0xdf, 0x6a, 0x54, 0x9a, 0x9c, 0x42, 0x20,
|
|
|
|
0xaa, 0x7a, 0x4d, 0x59, 0xe4, 0x4c, 0x9d, 0xd9, 0x30, 0x6d, 0x37, 0xb2, 0x80, 0x20, 0xe7, 0xac,
|
|
|
|
0xa4, 0xeb, 0xc8, 0x9d, 0x7a, 0xb3, 0x70, 0x1e, 0x27, 0x87, 0xb0, 0xa4, 0x73, 0x3e, 0xb9, 0xb3,
|
|
|
|
0xd0, 0x92, 0x69, 0xb9, 0x4b, 0xdb, 0x13, 0x93, 0x1b, 0x08, 0x3b, 0x32, 0x19, 0x81, 0xb7, 0xc1,
|
|
|
|
0x5d, 0x9b, 0x6f, 0x46, 0xf2, 0x1f, 0xfc, 0xf7, 0xac, 0xaa, 0x31, 0x72, 0xad, 0xd6, 0x2c, 0x0b,
|
|
|
|
0xf7, 0xda, 0x89, 0xcf, 0x60, 0x74, 0x2b, 0x44, 0x45, 0x51, 0x3d, 0xf3, 0x5f, 0x2a, 0xc6, 0x5f,
|
|
|
|
0x0e, 0x8c, 0x3b, 0xb0, 0x12, 0x9c, 0x29, 0x24, 0x09, 0x10, 0xca, 0xf2, 0xaa, 0x2e, 0xb0, 0x78,
|
|
|
|
0xcc, 0xb6, 0xa8, 0x44, 0x96, 0xa3, 0x8a, 0x9c, 0xa9, 0x37, 0x1b, 0xa6, 0x3f, 0x38, 0x86, 0xc7,
|
|
|
|
0x8f, 0x1e, 0xef, 0x36, 0x7c, 0xdf, 0x21, 0xe7, 0x30, 0xde, 0xa7, 0xa4, 0xa8, 0x78, 0x2d, 0x0d,
|
|
|
|
0xee, 0x59, 0xbc, 0x6f, 0x18, 0x7a, 0x9f, 0x71, 0xa4, 0x07, 0x0d, 0xdd, 0x33, 0xc8, 0x04, 0xfe,
|
|
|
|
0x2a, 0xac, 0x30, 0xd7, 0x5c, 0x46, 0xbe, 0xbd, 0xeb, 0x61, 0x8f, 0xaf, 0xc0, 0x5f, 0xe9, 0x2c,
|
|
|
|
0xdf, 0x90, 0x0b, 0x08, 0x4a, 0x69, 0xfa, 0xd8, 0x4b, 0x85, 0xf3, 0x93, 0xce, 0xcb, 0x58, 0xe2,
|
|
|
|
0xde, 0xb8, 0x69, 0x0b, 0xc5, 0x4f, 0x00, 0x47, 0x95, 0x10, 0x18, 0x94, 0xb4, 0xc2, 0xf6, 0x4b,
|
|
|
|
0xda, 0xd9, 0x68, 0x15, 0x65, 0xcd, 0x63, 0xf8, 0xa9, 0x9d, 0x4d, 0x93, 0xb2, 0x66, 0xb9, 0xa6,
|
|
|
|
0x9c, 0x45, 0x5e, 0xd3, 0x64, 0xbf, 0xbf, 0x04, 0xf6, 0xef, 0xba, 0xfc, 0x0e, 0x00, 0x00, 0xff,
|
|
|
|
0xff, 0x2c, 0x72, 0x6a, 0xd8, 0x6d, 0x02, 0x00, 0x00,
|
2017-11-06 19:53:54 +00:00
|
|
|
}
|