mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-11 17:17:05 +02:00
This moves Logs endpoint to machined to reduce the mount footprint of osd. Signed-off-by: Brad Beam <brad.beam@talos-systems.com>
260 lines
8.2 KiB
Go
260 lines
8.2 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: common/common.proto
|
|
|
|
package common
|
|
|
|
import (
|
|
fmt "fmt"
|
|
math "math"
|
|
|
|
proto "github.com/golang/protobuf/proto"
|
|
)
|
|
|
|
// 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 ContainerDriver int32
|
|
|
|
const (
|
|
ContainerDriver_CONTAINERD ContainerDriver = 0
|
|
ContainerDriver_CRI ContainerDriver = 1
|
|
)
|
|
|
|
var ContainerDriver_name = map[int32]string{
|
|
0: "CONTAINERD",
|
|
1: "CRI",
|
|
}
|
|
|
|
var ContainerDriver_value = map[string]int32{
|
|
"CONTAINERD": 0,
|
|
"CRI": 1,
|
|
}
|
|
|
|
func (x ContainerDriver) String() string {
|
|
return proto.EnumName(ContainerDriver_name, int32(x))
|
|
}
|
|
|
|
func (ContainerDriver) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_8f954d82c0b891f6, []int{0}
|
|
}
|
|
|
|
// Common metadata message nested in all reply message types
|
|
type NodeMetadata struct {
|
|
Hostname string `protobuf:"bytes,1,opt,name=hostname,proto3" json:"hostname,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *NodeMetadata) Reset() { *m = NodeMetadata{} }
|
|
func (m *NodeMetadata) String() string { return proto.CompactTextString(m) }
|
|
func (*NodeMetadata) ProtoMessage() {}
|
|
func (*NodeMetadata) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_8f954d82c0b891f6, []int{0}
|
|
}
|
|
|
|
func (m *NodeMetadata) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_NodeMetadata.Unmarshal(m, b)
|
|
}
|
|
|
|
func (m *NodeMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_NodeMetadata.Marshal(b, m, deterministic)
|
|
}
|
|
|
|
func (m *NodeMetadata) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_NodeMetadata.Merge(m, src)
|
|
}
|
|
|
|
func (m *NodeMetadata) XXX_Size() int {
|
|
return xxx_messageInfo_NodeMetadata.Size(m)
|
|
}
|
|
|
|
func (m *NodeMetadata) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_NodeMetadata.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_NodeMetadata proto.InternalMessageInfo
|
|
|
|
func (m *NodeMetadata) GetHostname() string {
|
|
if m != nil {
|
|
return m.Hostname
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// The response message containing the requested logs.
|
|
type Data struct {
|
|
Bytes []byte `protobuf:"bytes,1,opt,name=bytes,proto3" json:"bytes,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Data) Reset() { *m = Data{} }
|
|
func (m *Data) String() string { return proto.CompactTextString(m) }
|
|
func (*Data) ProtoMessage() {}
|
|
func (*Data) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_8f954d82c0b891f6, []int{1}
|
|
}
|
|
|
|
func (m *Data) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Data.Unmarshal(m, b)
|
|
}
|
|
|
|
func (m *Data) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Data.Marshal(b, m, deterministic)
|
|
}
|
|
|
|
func (m *Data) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Data.Merge(m, src)
|
|
}
|
|
|
|
func (m *Data) XXX_Size() int {
|
|
return xxx_messageInfo_Data.Size(m)
|
|
}
|
|
|
|
func (m *Data) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Data.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Data proto.InternalMessageInfo
|
|
|
|
func (m *Data) GetBytes() []byte {
|
|
if m != nil {
|
|
return m.Bytes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DataResponse struct {
|
|
Metadata *NodeMetadata `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"`
|
|
Bytes *Data `protobuf:"bytes,2,opt,name=bytes,proto3" json:"bytes,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DataResponse) Reset() { *m = DataResponse{} }
|
|
func (m *DataResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*DataResponse) ProtoMessage() {}
|
|
func (*DataResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_8f954d82c0b891f6, []int{2}
|
|
}
|
|
|
|
func (m *DataResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DataResponse.Unmarshal(m, b)
|
|
}
|
|
|
|
func (m *DataResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DataResponse.Marshal(b, m, deterministic)
|
|
}
|
|
|
|
func (m *DataResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DataResponse.Merge(m, src)
|
|
}
|
|
|
|
func (m *DataResponse) XXX_Size() int {
|
|
return xxx_messageInfo_DataResponse.Size(m)
|
|
}
|
|
|
|
func (m *DataResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DataResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DataResponse proto.InternalMessageInfo
|
|
|
|
func (m *DataResponse) GetMetadata() *NodeMetadata {
|
|
if m != nil {
|
|
return m.Metadata
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DataResponse) GetBytes() *Data {
|
|
if m != nil {
|
|
return m.Bytes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DataReply struct {
|
|
Response []*DataResponse `protobuf:"bytes,1,rep,name=response,proto3" json:"response,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DataReply) Reset() { *m = DataReply{} }
|
|
func (m *DataReply) String() string { return proto.CompactTextString(m) }
|
|
func (*DataReply) ProtoMessage() {}
|
|
func (*DataReply) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_8f954d82c0b891f6, []int{3}
|
|
}
|
|
|
|
func (m *DataReply) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DataReply.Unmarshal(m, b)
|
|
}
|
|
|
|
func (m *DataReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DataReply.Marshal(b, m, deterministic)
|
|
}
|
|
|
|
func (m *DataReply) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DataReply.Merge(m, src)
|
|
}
|
|
|
|
func (m *DataReply) XXX_Size() int {
|
|
return xxx_messageInfo_DataReply.Size(m)
|
|
}
|
|
|
|
func (m *DataReply) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DataReply.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DataReply proto.InternalMessageInfo
|
|
|
|
func (m *DataReply) GetResponse() []*DataResponse {
|
|
if m != nil {
|
|
return m.Response
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterEnum("common.ContainerDriver", ContainerDriver_name, ContainerDriver_value)
|
|
proto.RegisterType((*NodeMetadata)(nil), "common.NodeMetadata")
|
|
proto.RegisterType((*Data)(nil), "common.Data")
|
|
proto.RegisterType((*DataResponse)(nil), "common.DataResponse")
|
|
proto.RegisterType((*DataReply)(nil), "common.DataReply")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("common/common.proto", fileDescriptor_8f954d82c0b891f6) }
|
|
|
|
var fileDescriptor_8f954d82c0b891f6 = []byte{
|
|
// 254 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x90, 0xc1, 0x4b, 0xf3, 0x30,
|
|
0x18, 0xc6, 0xbf, 0x7e, 0xd3, 0xb9, 0xbd, 0x16, 0x1d, 0x71, 0x87, 0x21, 0x1e, 0x46, 0x4f, 0x5a,
|
|
0x71, 0x15, 0x3d, 0x7b, 0xd0, 0xd6, 0xc3, 0x0e, 0x56, 0x08, 0x9e, 0xbc, 0xa5, 0x36, 0xb8, 0xc2,
|
|
0x92, 0xb7, 0x24, 0xaf, 0x42, 0xff, 0x7b, 0x69, 0x92, 0x95, 0x9e, 0xc2, 0x43, 0x7e, 0x3c, 0xbf,
|
|
0x97, 0x07, 0x2e, 0xbe, 0x50, 0x29, 0xd4, 0x99, 0x7f, 0x36, 0xad, 0x41, 0x42, 0x36, 0xf5, 0x29,
|
|
0x49, 0x21, 0x2e, 0xb1, 0x96, 0x6f, 0x92, 0x44, 0x2d, 0x48, 0xb0, 0x4b, 0x98, 0xed, 0xd0, 0x92,
|
|
0x16, 0x4a, 0xae, 0xa2, 0x75, 0x74, 0x3d, 0xe7, 0x43, 0x4e, 0xae, 0xe0, 0xa8, 0xe8, 0x99, 0x25,
|
|
0x1c, 0x57, 0x1d, 0x49, 0xeb, 0x80, 0x98, 0xfb, 0x90, 0xd4, 0x10, 0xf7, 0xbf, 0x5c, 0xda, 0x16,
|
|
0xb5, 0x95, 0xec, 0x1e, 0x66, 0x2a, 0xb4, 0x3a, 0xf0, 0xf4, 0x61, 0xb9, 0x09, 0x27, 0x8c, 0x8d,
|
|
0x7c, 0xa0, 0x58, 0x72, 0xe8, 0xfd, 0xef, 0xf0, 0xf8, 0x80, 0xbb, 0xda, 0x60, 0x79, 0x82, 0xb9,
|
|
0xb7, 0xb4, 0xfb, 0xae, 0x57, 0x98, 0xa0, 0x5b, 0x45, 0xeb, 0xc9, 0x58, 0x31, 0x3e, 0x85, 0x0f,
|
|
0x54, 0x9a, 0xc2, 0x79, 0x8e, 0x9a, 0x44, 0xa3, 0xa5, 0x29, 0x4c, 0xf3, 0x2b, 0x0d, 0x3b, 0x03,
|
|
0xc8, 0xdf, 0xcb, 0x8f, 0xe7, 0x6d, 0xf9, 0xca, 0x8b, 0xc5, 0x3f, 0x76, 0x02, 0x93, 0x9c, 0x6f,
|
|
0x17, 0xd1, 0xcb, 0xed, 0xe7, 0xcd, 0x77, 0x43, 0xbb, 0x9f, 0xaa, 0xef, 0xcc, 0x48, 0xec, 0xd1,
|
|
0xde, 0xd9, 0xce, 0x92, 0x54, 0xd6, 0xa7, 0x4c, 0xb4, 0x4d, 0x58, 0xb5, 0x9a, 0xba, 0x59, 0x1f,
|
|
0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x4c, 0x3c, 0xf1, 0xf3, 0x6d, 0x01, 0x00, 0x00,
|
|
}
|