191 lines
6.6 KiB
Go
191 lines
6.6 KiB
Go
// 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() {}
|
|
func (*Empty) Descriptor() ([]byte, []int) { return fileDescriptor4, []int{0} }
|
|
|
|
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 fileDescriptor4, []int{1} }
|
|
|
|
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 fileDescriptor4, []int{2} }
|
|
|
|
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 ""
|
|
}
|
|
|
|
type ResourceIdentifier struct {
|
|
Group string `protobuf:"bytes,1,opt,name=group" json:"group,omitempty"`
|
|
Resource string `protobuf:"bytes,2,opt,name=resource" json:"resource,omitempty"`
|
|
Namespace string `protobuf:"bytes,3,opt,name=namespace" json:"namespace,omitempty"`
|
|
Name string `protobuf:"bytes,4,opt,name=name" json:"name,omitempty"`
|
|
}
|
|
|
|
func (m *ResourceIdentifier) Reset() { *m = ResourceIdentifier{} }
|
|
func (m *ResourceIdentifier) String() string { return proto.CompactTextString(m) }
|
|
func (*ResourceIdentifier) ProtoMessage() {}
|
|
func (*ResourceIdentifier) Descriptor() ([]byte, []int) { return fileDescriptor4, []int{3} }
|
|
|
|
func (m *ResourceIdentifier) GetGroup() string {
|
|
if m != nil {
|
|
return m.Group
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ResourceIdentifier) GetResource() string {
|
|
if m != nil {
|
|
return m.Resource
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ResourceIdentifier) GetNamespace() string {
|
|
if m != nil {
|
|
return m.Namespace
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ResourceIdentifier) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ResourceSelector 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 *ResourceSelector) Reset() { *m = ResourceSelector{} }
|
|
func (m *ResourceSelector) String() string { return proto.CompactTextString(m) }
|
|
func (*ResourceSelector) ProtoMessage() {}
|
|
func (*ResourceSelector) Descriptor() ([]byte, []int) { return fileDescriptor4, []int{4} }
|
|
|
|
func (m *ResourceSelector) GetIncludedNamespaces() []string {
|
|
if m != nil {
|
|
return m.IncludedNamespaces
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ResourceSelector) GetExcludedNamespaces() []string {
|
|
if m != nil {
|
|
return m.ExcludedNamespaces
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ResourceSelector) GetIncludedResources() []string {
|
|
if m != nil {
|
|
return m.IncludedResources
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ResourceSelector) GetExcludedResources() []string {
|
|
if m != nil {
|
|
return m.ExcludedResources
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ResourceSelector) GetSelector() string {
|
|
if m != nil {
|
|
return m.Selector
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*Empty)(nil), "generated.Empty")
|
|
proto.RegisterType((*Stack)(nil), "generated.Stack")
|
|
proto.RegisterType((*StackFrame)(nil), "generated.StackFrame")
|
|
proto.RegisterType((*ResourceIdentifier)(nil), "generated.ResourceIdentifier")
|
|
proto.RegisterType((*ResourceSelector)(nil), "generated.ResourceSelector")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("Shared.proto", fileDescriptor4) }
|
|
|
|
var fileDescriptor4 = []byte{
|
|
// 294 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x92, 0xc1, 0x4e, 0xb5, 0x30,
|
|
0x10, 0x85, 0xc3, 0x05, 0xee, 0xff, 0x33, 0xba, 0xd0, 0x46, 0x93, 0xc6, 0xb8, 0x20, 0xac, 0x58,
|
|
0x28, 0x0b, 0x4d, 0x7c, 0x03, 0x4d, 0xdc, 0x18, 0x53, 0x9e, 0x00, 0xcb, 0x70, 0x6d, 0xe4, 0xb6,
|
|
0xa4, 0x94, 0xe4, 0xfa, 0xca, 0x3e, 0x85, 0x69, 0x4b, 0x61, 0x81, 0xbb, 0x39, 0x73, 0x3e, 0xce,
|
|
0x0c, 0x93, 0xc2, 0x79, 0xfd, 0xd9, 0x68, 0x6c, 0xab, 0x41, 0x2b, 0xa3, 0x48, 0x76, 0x40, 0x89,
|
|
0xba, 0x31, 0xd8, 0x16, 0xff, 0x20, 0x7d, 0x3e, 0x0e, 0xe6, 0xbb, 0x78, 0x82, 0xb4, 0x36, 0x0d,
|
|
0xff, 0x22, 0xf7, 0xb0, 0xef, 0x74, 0x73, 0xc4, 0x91, 0x46, 0x79, 0x5c, 0x9e, 0x3d, 0x5c, 0x57,
|
|
0x0b, 0x5d, 0x39, 0xe2, 0xc5, 0xba, 0x6c, 0x86, 0x8a, 0x77, 0x80, 0xb5, 0x4b, 0x08, 0x24, 0x9d,
|
|
0xe8, 0x91, 0x46, 0x79, 0x54, 0x66, 0xcc, 0xd5, 0xb6, 0xd7, 0x0b, 0x89, 0x74, 0x97, 0x47, 0x65,
|
|
0xca, 0x5c, 0x4d, 0x6e, 0xe0, 0x7f, 0x37, 0x49, 0x6e, 0x84, 0x92, 0x34, 0x76, 0xec, 0xa2, 0x8b,
|
|
0x13, 0x10, 0x86, 0xa3, 0x9a, 0x34, 0xc7, 0xd7, 0x16, 0xa5, 0x11, 0x9d, 0x40, 0x4d, 0xae, 0x20,
|
|
0x3d, 0x68, 0x35, 0x0d, 0x73, 0xb4, 0x17, 0x36, 0x47, 0xcf, 0xac, 0xcb, 0xcf, 0xd8, 0xa2, 0xc9,
|
|
0x2d, 0x64, 0xd2, 0xae, 0x38, 0x34, 0x1c, 0xe7, 0x21, 0x6b, 0xc3, 0x6e, 0x65, 0x05, 0x4d, 0xfc,
|
|
0xa6, 0xb6, 0x2e, 0x7e, 0x22, 0xb8, 0x08, 0xa3, 0x6b, 0xec, 0x91, 0x1b, 0xa5, 0x49, 0x05, 0x44,
|
|
0x48, 0xde, 0x4f, 0x2d, 0xb6, 0x6f, 0xe1, 0x6b, 0x7f, 0x9b, 0x8c, 0xfd, 0xe1, 0x58, 0x1e, 0x4f,
|
|
0x1b, 0x7e, 0xe7, 0xf9, 0xad, 0x43, 0xee, 0xe0, 0x32, 0xa4, 0x84, 0xd9, 0x23, 0x8d, 0x1d, 0xbe,
|
|
0x35, 0x2c, 0x1d, 0x32, 0x56, 0x3a, 0xf1, 0xf4, 0xc6, 0xb0, 0xe7, 0x19, 0xe7, 0xff, 0xa0, 0xa9,
|
|
0x3f, 0x4f, 0xd0, 0x1f, 0x7b, 0xf7, 0x16, 0x1e, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xc8, 0x83,
|
|
0xa1, 0x97, 0x1b, 0x02, 0x00, 0x00,
|
|
}
|