1277 lines
42 KiB
Go
1277 lines
42 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: runtime/service/proto/runtime.proto
|
|
|
|
package go_micro_runtime
|
|
|
|
import (
|
|
context "context"
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
grpc "google.golang.org/grpc"
|
|
codes "google.golang.org/grpc/codes"
|
|
status "google.golang.org/grpc/status"
|
|
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 Service struct {
|
|
// name of the service
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
// version of the service
|
|
Version string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
|
|
// git url of the source
|
|
Source string `protobuf:"bytes,3,opt,name=source,proto3" json:"source,omitempty"`
|
|
// service metadata
|
|
Metadata map[string]string `protobuf:"bytes,4,rep,name=metadata,proto3" json:"metadata,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Service) Reset() { *m = Service{} }
|
|
func (m *Service) String() string { return proto.CompactTextString(m) }
|
|
func (*Service) ProtoMessage() {}
|
|
func (*Service) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{0}
|
|
}
|
|
|
|
func (m *Service) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Service.Unmarshal(m, b)
|
|
}
|
|
func (m *Service) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Service.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Service) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Service.Merge(m, src)
|
|
}
|
|
func (m *Service) XXX_Size() int {
|
|
return xxx_messageInfo_Service.Size(m)
|
|
}
|
|
func (m *Service) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Service.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Service proto.InternalMessageInfo
|
|
|
|
func (m *Service) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Service) GetVersion() string {
|
|
if m != nil {
|
|
return m.Version
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Service) GetSource() string {
|
|
if m != nil {
|
|
return m.Source
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Service) GetMetadata() map[string]string {
|
|
if m != nil {
|
|
return m.Metadata
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type Event struct {
|
|
Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
|
|
Timestamp int64 `protobuf:"varint,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
Service string `protobuf:"bytes,3,opt,name=service,proto3" json:"service,omitempty"`
|
|
Version string `protobuf:"bytes,4,opt,name=version,proto3" json:"version,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_2434d8152598889b, []int{1}
|
|
}
|
|
|
|
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() string {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Event) GetTimestamp() int64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Event) GetService() string {
|
|
if m != nil {
|
|
return m.Service
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Event) GetVersion() string {
|
|
if m != nil {
|
|
return m.Version
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type CreateOptions struct {
|
|
// command to pass in
|
|
Command []string `protobuf:"bytes,1,rep,name=command,proto3" json:"command,omitempty"`
|
|
// args to pass into command
|
|
Args []string `protobuf:"bytes,2,rep,name=args,proto3" json:"args,omitempty"`
|
|
// environment to pass in
|
|
Env []string `protobuf:"bytes,3,rep,name=env,proto3" json:"env,omitempty"`
|
|
// output to send to
|
|
Output string `protobuf:"bytes,4,opt,name=output,proto3" json:"output,omitempty"`
|
|
// create type of service
|
|
Type string `protobuf:"bytes,5,opt,name=type,proto3" json:"type,omitempty"`
|
|
// image to use
|
|
Image string `protobuf:"bytes,6,opt,name=image,proto3" json:"image,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CreateOptions) Reset() { *m = CreateOptions{} }
|
|
func (m *CreateOptions) String() string { return proto.CompactTextString(m) }
|
|
func (*CreateOptions) ProtoMessage() {}
|
|
func (*CreateOptions) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{2}
|
|
}
|
|
|
|
func (m *CreateOptions) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CreateOptions.Unmarshal(m, b)
|
|
}
|
|
func (m *CreateOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CreateOptions.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CreateOptions) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CreateOptions.Merge(m, src)
|
|
}
|
|
func (m *CreateOptions) XXX_Size() int {
|
|
return xxx_messageInfo_CreateOptions.Size(m)
|
|
}
|
|
func (m *CreateOptions) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CreateOptions.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CreateOptions proto.InternalMessageInfo
|
|
|
|
func (m *CreateOptions) GetCommand() []string {
|
|
if m != nil {
|
|
return m.Command
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CreateOptions) GetArgs() []string {
|
|
if m != nil {
|
|
return m.Args
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CreateOptions) GetEnv() []string {
|
|
if m != nil {
|
|
return m.Env
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CreateOptions) GetOutput() string {
|
|
if m != nil {
|
|
return m.Output
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateOptions) GetType() string {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateOptions) GetImage() string {
|
|
if m != nil {
|
|
return m.Image
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type CreateRequest struct {
|
|
Service *Service `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
|
|
Options *CreateOptions `protobuf:"bytes,2,opt,name=options,proto3" json:"options,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CreateRequest) Reset() { *m = CreateRequest{} }
|
|
func (m *CreateRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*CreateRequest) ProtoMessage() {}
|
|
func (*CreateRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{3}
|
|
}
|
|
|
|
func (m *CreateRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CreateRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *CreateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CreateRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CreateRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CreateRequest.Merge(m, src)
|
|
}
|
|
func (m *CreateRequest) XXX_Size() int {
|
|
return xxx_messageInfo_CreateRequest.Size(m)
|
|
}
|
|
func (m *CreateRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CreateRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CreateRequest proto.InternalMessageInfo
|
|
|
|
func (m *CreateRequest) GetService() *Service {
|
|
if m != nil {
|
|
return m.Service
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CreateRequest) GetOptions() *CreateOptions {
|
|
if m != nil {
|
|
return m.Options
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type CreateResponse struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CreateResponse) Reset() { *m = CreateResponse{} }
|
|
func (m *CreateResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*CreateResponse) ProtoMessage() {}
|
|
func (*CreateResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{4}
|
|
}
|
|
|
|
func (m *CreateResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CreateResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *CreateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CreateResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CreateResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CreateResponse.Merge(m, src)
|
|
}
|
|
func (m *CreateResponse) XXX_Size() int {
|
|
return xxx_messageInfo_CreateResponse.Size(m)
|
|
}
|
|
func (m *CreateResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CreateResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CreateResponse proto.InternalMessageInfo
|
|
|
|
type ReadOptions struct {
|
|
// service name
|
|
Service string `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
|
|
// version of the service
|
|
Version string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
|
|
// type of service
|
|
Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ReadOptions) Reset() { *m = ReadOptions{} }
|
|
func (m *ReadOptions) String() string { return proto.CompactTextString(m) }
|
|
func (*ReadOptions) ProtoMessage() {}
|
|
func (*ReadOptions) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{5}
|
|
}
|
|
|
|
func (m *ReadOptions) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ReadOptions.Unmarshal(m, b)
|
|
}
|
|
func (m *ReadOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ReadOptions.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ReadOptions) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ReadOptions.Merge(m, src)
|
|
}
|
|
func (m *ReadOptions) XXX_Size() int {
|
|
return xxx_messageInfo_ReadOptions.Size(m)
|
|
}
|
|
func (m *ReadOptions) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ReadOptions.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ReadOptions proto.InternalMessageInfo
|
|
|
|
func (m *ReadOptions) GetService() string {
|
|
if m != nil {
|
|
return m.Service
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ReadOptions) GetVersion() string {
|
|
if m != nil {
|
|
return m.Version
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ReadOptions) GetType() string {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ReadRequest struct {
|
|
Options *ReadOptions `protobuf:"bytes,1,opt,name=options,proto3" json:"options,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ReadRequest) Reset() { *m = ReadRequest{} }
|
|
func (m *ReadRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ReadRequest) ProtoMessage() {}
|
|
func (*ReadRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{6}
|
|
}
|
|
|
|
func (m *ReadRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ReadRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *ReadRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ReadRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ReadRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ReadRequest.Merge(m, src)
|
|
}
|
|
func (m *ReadRequest) XXX_Size() int {
|
|
return xxx_messageInfo_ReadRequest.Size(m)
|
|
}
|
|
func (m *ReadRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ReadRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ReadRequest proto.InternalMessageInfo
|
|
|
|
func (m *ReadRequest) GetOptions() *ReadOptions {
|
|
if m != nil {
|
|
return m.Options
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ReadResponse struct {
|
|
Services []*Service `protobuf:"bytes,1,rep,name=services,proto3" json:"services,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ReadResponse) Reset() { *m = ReadResponse{} }
|
|
func (m *ReadResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ReadResponse) ProtoMessage() {}
|
|
func (*ReadResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{7}
|
|
}
|
|
|
|
func (m *ReadResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ReadResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *ReadResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ReadResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ReadResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ReadResponse.Merge(m, src)
|
|
}
|
|
func (m *ReadResponse) XXX_Size() int {
|
|
return xxx_messageInfo_ReadResponse.Size(m)
|
|
}
|
|
func (m *ReadResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ReadResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ReadResponse proto.InternalMessageInfo
|
|
|
|
func (m *ReadResponse) GetServices() []*Service {
|
|
if m != nil {
|
|
return m.Services
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DeleteOptions struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DeleteOptions) Reset() { *m = DeleteOptions{} }
|
|
func (m *DeleteOptions) String() string { return proto.CompactTextString(m) }
|
|
func (*DeleteOptions) ProtoMessage() {}
|
|
func (*DeleteOptions) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{8}
|
|
}
|
|
|
|
func (m *DeleteOptions) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DeleteOptions.Unmarshal(m, b)
|
|
}
|
|
func (m *DeleteOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DeleteOptions.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DeleteOptions) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DeleteOptions.Merge(m, src)
|
|
}
|
|
func (m *DeleteOptions) XXX_Size() int {
|
|
return xxx_messageInfo_DeleteOptions.Size(m)
|
|
}
|
|
func (m *DeleteOptions) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DeleteOptions.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DeleteOptions proto.InternalMessageInfo
|
|
|
|
type DeleteRequest struct {
|
|
Service *Service `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
|
|
Options *DeleteOptions `protobuf:"bytes,2,opt,name=options,proto3" json:"options,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DeleteRequest) Reset() { *m = DeleteRequest{} }
|
|
func (m *DeleteRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*DeleteRequest) ProtoMessage() {}
|
|
func (*DeleteRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{9}
|
|
}
|
|
|
|
func (m *DeleteRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DeleteRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *DeleteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DeleteRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DeleteRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DeleteRequest.Merge(m, src)
|
|
}
|
|
func (m *DeleteRequest) XXX_Size() int {
|
|
return xxx_messageInfo_DeleteRequest.Size(m)
|
|
}
|
|
func (m *DeleteRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DeleteRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DeleteRequest proto.InternalMessageInfo
|
|
|
|
func (m *DeleteRequest) GetService() *Service {
|
|
if m != nil {
|
|
return m.Service
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DeleteRequest) GetOptions() *DeleteOptions {
|
|
if m != nil {
|
|
return m.Options
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DeleteResponse struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DeleteResponse) Reset() { *m = DeleteResponse{} }
|
|
func (m *DeleteResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*DeleteResponse) ProtoMessage() {}
|
|
func (*DeleteResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{10}
|
|
}
|
|
|
|
func (m *DeleteResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DeleteResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *DeleteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DeleteResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DeleteResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DeleteResponse.Merge(m, src)
|
|
}
|
|
func (m *DeleteResponse) XXX_Size() int {
|
|
return xxx_messageInfo_DeleteResponse.Size(m)
|
|
}
|
|
func (m *DeleteResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DeleteResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DeleteResponse proto.InternalMessageInfo
|
|
|
|
type UpdateOptions struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UpdateOptions) Reset() { *m = UpdateOptions{} }
|
|
func (m *UpdateOptions) String() string { return proto.CompactTextString(m) }
|
|
func (*UpdateOptions) ProtoMessage() {}
|
|
func (*UpdateOptions) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{11}
|
|
}
|
|
|
|
func (m *UpdateOptions) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UpdateOptions.Unmarshal(m, b)
|
|
}
|
|
func (m *UpdateOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UpdateOptions.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UpdateOptions) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UpdateOptions.Merge(m, src)
|
|
}
|
|
func (m *UpdateOptions) XXX_Size() int {
|
|
return xxx_messageInfo_UpdateOptions.Size(m)
|
|
}
|
|
func (m *UpdateOptions) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UpdateOptions.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UpdateOptions proto.InternalMessageInfo
|
|
|
|
type UpdateRequest struct {
|
|
Service *Service `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
|
|
Options *UpdateOptions `protobuf:"bytes,2,opt,name=options,proto3" json:"options,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UpdateRequest) Reset() { *m = UpdateRequest{} }
|
|
func (m *UpdateRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*UpdateRequest) ProtoMessage() {}
|
|
func (*UpdateRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{12}
|
|
}
|
|
|
|
func (m *UpdateRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UpdateRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *UpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UpdateRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UpdateRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UpdateRequest.Merge(m, src)
|
|
}
|
|
func (m *UpdateRequest) XXX_Size() int {
|
|
return xxx_messageInfo_UpdateRequest.Size(m)
|
|
}
|
|
func (m *UpdateRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UpdateRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UpdateRequest proto.InternalMessageInfo
|
|
|
|
func (m *UpdateRequest) GetService() *Service {
|
|
if m != nil {
|
|
return m.Service
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UpdateRequest) GetOptions() *UpdateOptions {
|
|
if m != nil {
|
|
return m.Options
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UpdateResponse struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UpdateResponse) Reset() { *m = UpdateResponse{} }
|
|
func (m *UpdateResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*UpdateResponse) ProtoMessage() {}
|
|
func (*UpdateResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{13}
|
|
}
|
|
|
|
func (m *UpdateResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UpdateResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *UpdateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UpdateResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UpdateResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UpdateResponse.Merge(m, src)
|
|
}
|
|
func (m *UpdateResponse) XXX_Size() int {
|
|
return xxx_messageInfo_UpdateResponse.Size(m)
|
|
}
|
|
func (m *UpdateResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UpdateResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UpdateResponse proto.InternalMessageInfo
|
|
|
|
type ListOptions struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ListOptions) Reset() { *m = ListOptions{} }
|
|
func (m *ListOptions) String() string { return proto.CompactTextString(m) }
|
|
func (*ListOptions) ProtoMessage() {}
|
|
func (*ListOptions) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{14}
|
|
}
|
|
|
|
func (m *ListOptions) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ListOptions.Unmarshal(m, b)
|
|
}
|
|
func (m *ListOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ListOptions.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ListOptions) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ListOptions.Merge(m, src)
|
|
}
|
|
func (m *ListOptions) XXX_Size() int {
|
|
return xxx_messageInfo_ListOptions.Size(m)
|
|
}
|
|
func (m *ListOptions) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ListOptions.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ListOptions proto.InternalMessageInfo
|
|
|
|
type ListRequest struct {
|
|
Options *ListOptions `protobuf:"bytes,1,opt,name=options,proto3" json:"options,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ListRequest) Reset() { *m = ListRequest{} }
|
|
func (m *ListRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ListRequest) ProtoMessage() {}
|
|
func (*ListRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{15}
|
|
}
|
|
|
|
func (m *ListRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ListRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *ListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ListRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ListRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ListRequest.Merge(m, src)
|
|
}
|
|
func (m *ListRequest) XXX_Size() int {
|
|
return xxx_messageInfo_ListRequest.Size(m)
|
|
}
|
|
func (m *ListRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ListRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ListRequest proto.InternalMessageInfo
|
|
|
|
func (m *ListRequest) GetOptions() *ListOptions {
|
|
if m != nil {
|
|
return m.Options
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ListResponse struct {
|
|
Services []*Service `protobuf:"bytes,1,rep,name=services,proto3" json:"services,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ListResponse) Reset() { *m = ListResponse{} }
|
|
func (m *ListResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ListResponse) ProtoMessage() {}
|
|
func (*ListResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{16}
|
|
}
|
|
|
|
func (m *ListResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ListResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *ListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ListResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ListResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ListResponse.Merge(m, src)
|
|
}
|
|
func (m *ListResponse) XXX_Size() int {
|
|
return xxx_messageInfo_ListResponse.Size(m)
|
|
}
|
|
func (m *ListResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ListResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ListResponse proto.InternalMessageInfo
|
|
|
|
func (m *ListResponse) GetServices() []*Service {
|
|
if m != nil {
|
|
return m.Services
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type LogsOptions struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *LogsOptions) Reset() { *m = LogsOptions{} }
|
|
func (m *LogsOptions) String() string { return proto.CompactTextString(m) }
|
|
func (*LogsOptions) ProtoMessage() {}
|
|
func (*LogsOptions) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{17}
|
|
}
|
|
|
|
func (m *LogsOptions) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_LogsOptions.Unmarshal(m, b)
|
|
}
|
|
func (m *LogsOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_LogsOptions.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *LogsOptions) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_LogsOptions.Merge(m, src)
|
|
}
|
|
func (m *LogsOptions) XXX_Size() int {
|
|
return xxx_messageInfo_LogsOptions.Size(m)
|
|
}
|
|
func (m *LogsOptions) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_LogsOptions.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_LogsOptions proto.InternalMessageInfo
|
|
|
|
type LogsRequest struct {
|
|
// service to request logs for
|
|
Service string `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
|
|
// stream records continuously
|
|
Stream bool `protobuf:"varint,2,opt,name=stream,proto3" json:"stream,omitempty"`
|
|
// count of records to request
|
|
Count int64 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
|
|
// relative time in seconds
|
|
// before the current time
|
|
// from which to show logs
|
|
Since int64 `protobuf:"varint,4,opt,name=since,proto3" json:"since,omitempty"`
|
|
// options to use
|
|
Options *LogsOptions `protobuf:"bytes,5,opt,name=options,proto3" json:"options,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *LogsRequest) Reset() { *m = LogsRequest{} }
|
|
func (m *LogsRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*LogsRequest) ProtoMessage() {}
|
|
func (*LogsRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{18}
|
|
}
|
|
|
|
func (m *LogsRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_LogsRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *LogsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_LogsRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *LogsRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_LogsRequest.Merge(m, src)
|
|
}
|
|
func (m *LogsRequest) XXX_Size() int {
|
|
return xxx_messageInfo_LogsRequest.Size(m)
|
|
}
|
|
func (m *LogsRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_LogsRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_LogsRequest proto.InternalMessageInfo
|
|
|
|
func (m *LogsRequest) GetService() string {
|
|
if m != nil {
|
|
return m.Service
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *LogsRequest) GetStream() bool {
|
|
if m != nil {
|
|
return m.Stream
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *LogsRequest) GetCount() int64 {
|
|
if m != nil {
|
|
return m.Count
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *LogsRequest) GetSince() int64 {
|
|
if m != nil {
|
|
return m.Since
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *LogsRequest) GetOptions() *LogsOptions {
|
|
if m != nil {
|
|
return m.Options
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type LogRecord struct {
|
|
// timestamp of log record
|
|
Timestamp int64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
// record metadata
|
|
Metadata map[string]string `protobuf:"bytes,2,rep,name=metadata,proto3" json:"metadata,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
|
// message
|
|
Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *LogRecord) Reset() { *m = LogRecord{} }
|
|
func (m *LogRecord) String() string { return proto.CompactTextString(m) }
|
|
func (*LogRecord) ProtoMessage() {}
|
|
func (*LogRecord) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_2434d8152598889b, []int{19}
|
|
}
|
|
|
|
func (m *LogRecord) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_LogRecord.Unmarshal(m, b)
|
|
}
|
|
func (m *LogRecord) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_LogRecord.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *LogRecord) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_LogRecord.Merge(m, src)
|
|
}
|
|
func (m *LogRecord) XXX_Size() int {
|
|
return xxx_messageInfo_LogRecord.Size(m)
|
|
}
|
|
func (m *LogRecord) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_LogRecord.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_LogRecord proto.InternalMessageInfo
|
|
|
|
func (m *LogRecord) GetTimestamp() int64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *LogRecord) GetMetadata() map[string]string {
|
|
if m != nil {
|
|
return m.Metadata
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *LogRecord) GetMessage() string {
|
|
if m != nil {
|
|
return m.Message
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*Service)(nil), "go.micro.runtime.Service")
|
|
proto.RegisterMapType((map[string]string)(nil), "go.micro.runtime.Service.MetadataEntry")
|
|
proto.RegisterType((*Event)(nil), "go.micro.runtime.Event")
|
|
proto.RegisterType((*CreateOptions)(nil), "go.micro.runtime.CreateOptions")
|
|
proto.RegisterType((*CreateRequest)(nil), "go.micro.runtime.CreateRequest")
|
|
proto.RegisterType((*CreateResponse)(nil), "go.micro.runtime.CreateResponse")
|
|
proto.RegisterType((*ReadOptions)(nil), "go.micro.runtime.ReadOptions")
|
|
proto.RegisterType((*ReadRequest)(nil), "go.micro.runtime.ReadRequest")
|
|
proto.RegisterType((*ReadResponse)(nil), "go.micro.runtime.ReadResponse")
|
|
proto.RegisterType((*DeleteOptions)(nil), "go.micro.runtime.DeleteOptions")
|
|
proto.RegisterType((*DeleteRequest)(nil), "go.micro.runtime.DeleteRequest")
|
|
proto.RegisterType((*DeleteResponse)(nil), "go.micro.runtime.DeleteResponse")
|
|
proto.RegisterType((*UpdateOptions)(nil), "go.micro.runtime.UpdateOptions")
|
|
proto.RegisterType((*UpdateRequest)(nil), "go.micro.runtime.UpdateRequest")
|
|
proto.RegisterType((*UpdateResponse)(nil), "go.micro.runtime.UpdateResponse")
|
|
proto.RegisterType((*ListOptions)(nil), "go.micro.runtime.ListOptions")
|
|
proto.RegisterType((*ListRequest)(nil), "go.micro.runtime.ListRequest")
|
|
proto.RegisterType((*ListResponse)(nil), "go.micro.runtime.ListResponse")
|
|
proto.RegisterType((*LogsOptions)(nil), "go.micro.runtime.LogsOptions")
|
|
proto.RegisterType((*LogsRequest)(nil), "go.micro.runtime.LogsRequest")
|
|
proto.RegisterType((*LogRecord)(nil), "go.micro.runtime.LogRecord")
|
|
proto.RegisterMapType((map[string]string)(nil), "go.micro.runtime.LogRecord.MetadataEntry")
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterFile("runtime/service/proto/runtime.proto", fileDescriptor_2434d8152598889b)
|
|
}
|
|
|
|
var fileDescriptor_2434d8152598889b = []byte{
|
|
// 683 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcb, 0x6e, 0xd3, 0x40,
|
|
0x14, 0xad, 0xe3, 0x3c, 0xda, 0x1b, 0x42, 0xab, 0x51, 0x85, 0x4c, 0x79, 0x45, 0x66, 0x41, 0xd9,
|
|
0x38, 0x28, 0x15, 0xe2, 0xb5, 0x2c, 0x09, 0x9b, 0x46, 0x48, 0x46, 0xfd, 0x80, 0xc1, 0xb9, 0x8a,
|
|
0x2c, 0x6a, 0x8f, 0xf1, 0x8c, 0x23, 0x65, 0xc5, 0x92, 0x35, 0xff, 0xc0, 0xbf, 0xb0, 0xe6, 0x8f,
|
|
0xd0, 0xbc, 0xfc, 0x48, 0xeb, 0x48, 0xa8, 0xea, 0x6e, 0xce, 0xf5, 0xcc, 0x9d, 0x73, 0xce, 0x9d,
|
|
0x7b, 0x65, 0x78, 0x9e, 0x17, 0xa9, 0x88, 0x13, 0x9c, 0x70, 0xcc, 0xd7, 0x71, 0x84, 0x93, 0x2c,
|
|
0x67, 0x82, 0x4d, 0x4c, 0x34, 0x50, 0x88, 0x1c, 0xad, 0x58, 0x90, 0xc4, 0x51, 0xce, 0x02, 0x13,
|
|
0xf7, 0xff, 0x3a, 0x30, 0xf8, 0xa2, 0x4f, 0x10, 0x02, 0xdd, 0x94, 0x26, 0xe8, 0x39, 0x63, 0xe7,
|
|
0xf4, 0x20, 0x54, 0x6b, 0xe2, 0xc1, 0x60, 0x8d, 0x39, 0x8f, 0x59, 0xea, 0x75, 0x54, 0xd8, 0x42,
|
|
0xf2, 0x00, 0xfa, 0x9c, 0x15, 0x79, 0x84, 0x9e, 0xab, 0x3e, 0x18, 0x44, 0xce, 0x61, 0x3f, 0x41,
|
|
0x41, 0x97, 0x54, 0x50, 0xaf, 0x3b, 0x76, 0x4f, 0x87, 0xd3, 0x17, 0xc1, 0xf6, 0xb5, 0x81, 0xb9,
|
|
0x32, 0x58, 0x98, 0x9d, 0xb3, 0x54, 0xe4, 0x9b, 0xb0, 0x3c, 0x78, 0xf2, 0x01, 0x46, 0x8d, 0x4f,
|
|
0xe4, 0x08, 0xdc, 0x6f, 0xb8, 0x31, 0xd4, 0xe4, 0x92, 0x1c, 0x43, 0x6f, 0x4d, 0xaf, 0x0a, 0x34,
|
|
0xbc, 0x34, 0x78, 0xdf, 0x79, 0xeb, 0xf8, 0x09, 0xf4, 0x66, 0x6b, 0x4c, 0x85, 0x14, 0x24, 0x36,
|
|
0x59, 0x29, 0x48, 0xae, 0xc9, 0x63, 0x38, 0x90, 0x0c, 0xb8, 0xa0, 0x49, 0xa6, 0x8e, 0xba, 0x61,
|
|
0x15, 0x90, 0x72, 0x8d, 0x7f, 0x46, 0x95, 0x85, 0x75, 0x23, 0xba, 0x0d, 0x23, 0xfc, 0x5f, 0x0e,
|
|
0x8c, 0xce, 0x73, 0xa4, 0x02, 0x3f, 0x67, 0x22, 0x66, 0x29, 0x97, 0x7b, 0x23, 0x96, 0x24, 0x34,
|
|
0x5d, 0x7a, 0xce, 0xd8, 0x95, 0x7b, 0x0d, 0x94, 0x8c, 0x68, 0xbe, 0xe2, 0x5e, 0x47, 0x85, 0xd5,
|
|
0x5a, 0x4a, 0xc3, 0x74, 0xed, 0xb9, 0x2a, 0x24, 0x97, 0xd2, 0x5a, 0x56, 0x88, 0xac, 0x10, 0xe6,
|
|
0x2a, 0x83, 0x4a, 0x3d, 0xbd, 0x9a, 0x9e, 0x63, 0xe8, 0xc5, 0x09, 0x5d, 0xa1, 0xd7, 0xd7, 0x36,
|
|
0x28, 0xe0, 0xff, 0xb0, 0x94, 0x42, 0xfc, 0x5e, 0x20, 0x17, 0xe4, 0xac, 0x12, 0x26, 0xdd, 0x18,
|
|
0x4e, 0x1f, 0xb6, 0x16, 0xa5, 0xd2, 0xfc, 0x0e, 0x06, 0x4c, 0x4b, 0x52, 0x4e, 0x0d, 0xa7, 0xcf,
|
|
0xae, 0x1f, 0x6a, 0x28, 0x0f, 0xed, 0x7e, 0xff, 0x08, 0xee, 0x5b, 0x02, 0x3c, 0x63, 0x29, 0x47,
|
|
0xff, 0x12, 0x86, 0x21, 0xd2, 0x65, 0xcd, 0xa3, 0x3a, 0xa1, 0x9b, 0x9d, 0xde, 0x7a, 0x72, 0x56,
|
|
0xbf, 0x5b, 0xe9, 0xf7, 0xe7, 0x3a, 0xad, 0xd5, 0xf9, 0xa6, 0xa2, 0xac, 0x75, 0x3e, 0xb9, 0x4e,
|
|
0xb9, 0x46, 0xa3, 0x22, 0x3c, 0x83, 0x7b, 0x3a, 0x8f, 0xa6, 0x4b, 0x5e, 0xc3, 0xbe, 0x21, 0xc4,
|
|
0x55, 0x11, 0x77, 0x3a, 0x56, 0x6e, 0xf5, 0x0f, 0x61, 0xf4, 0x11, 0xaf, 0xb0, 0x74, 0x44, 0x56,
|
|
0x42, 0x07, 0xee, 0xbc, 0x12, 0x8d, 0x7b, 0x1b, 0x95, 0xb0, 0x04, 0x4c, 0x25, 0x0e, 0x61, 0x74,
|
|
0x99, 0x2d, 0x69, 0x83, 0xa3, 0x0e, 0xdc, 0x39, 0xc7, 0xc6, 0xbd, 0x0d, 0x8e, 0x96, 0x80, 0xe1,
|
|
0x38, 0x82, 0xe1, 0x45, 0xcc, 0x85, 0x65, 0x38, 0xd7, 0xf0, 0x7f, 0xaa, 0x5c, 0x3b, 0xde, 0xa8,
|
|
0xb2, 0xce, 0x73, 0xbb, 0x2a, 0x4b, 0x76, 0x6c, 0xc5, 0x2d, 0xbb, 0xdf, 0x8e, 0xc6, 0x96, 0x5e,
|
|
0xfb, 0xdb, 0x96, 0x43, 0x53, 0xe4, 0x48, 0x13, 0x65, 0xd1, 0x7e, 0x68, 0x90, 0xec, 0xe2, 0x88,
|
|
0x15, 0xa9, 0x50, 0x4f, 0xdb, 0x0d, 0x35, 0x90, 0x51, 0x1e, 0xa7, 0x11, 0xaa, 0x31, 0xe0, 0x86,
|
|
0x1a, 0xd4, 0xc5, 0xf7, 0x5a, 0xc5, 0x57, 0xec, 0x2a, 0xf1, 0x7f, 0x1c, 0x38, 0xb8, 0x60, 0xab,
|
|
0x10, 0x23, 0x96, 0x2f, 0x9b, 0x83, 0xd0, 0xd9, 0x1e, 0x84, 0xb3, 0xda, 0x14, 0xef, 0x28, 0x63,
|
|
0x5e, 0xde, 0x78, 0x8b, 0x4e, 0xd6, 0x36, 0xc7, 0xa5, 0x13, 0x09, 0x72, 0x2e, 0xe7, 0x93, 0x99,
|
|
0xa7, 0x06, 0xde, 0x6a, 0xc2, 0x4f, 0x7f, 0xba, 0x30, 0x08, 0x35, 0x09, 0xb2, 0x80, 0xbe, 0x9e,
|
|
0x34, 0xa4, 0x75, 0x3a, 0x99, 0xba, 0x9c, 0x8c, 0xdb, 0x37, 0x98, 0x67, 0xb7, 0x47, 0x3e, 0x41,
|
|
0x57, 0xce, 0x01, 0xd2, 0x32, 0x37, 0x6c, 0xaa, 0xa7, 0x6d, 0x9f, 0xcb, 0x44, 0x0b, 0xe8, 0xeb,
|
|
0xbe, 0x23, 0xad, 0xbd, 0xba, 0x83, 0xd7, 0x56, 0xcb, 0xaa, 0x74, 0xba, 0x45, 0x48, 0x6b, 0x5b,
|
|
0xed, 0x48, 0xb7, 0xd5, 0x5d, 0x7b, 0x64, 0x0e, 0x5d, 0xf9, 0x46, 0x48, 0xcb, 0xdb, 0xb1, 0xa9,
|
|
0x1e, 0xed, 0x28, 0xba, 0xbf, 0xf7, 0xca, 0xf9, 0xda, 0x57, 0x3f, 0x16, 0x67, 0xff, 0x02, 0x00,
|
|
0x00, 0xff, 0xff, 0xe1, 0x5b, 0x52, 0x93, 0x7f, 0x08, 0x00, 0x00,
|
|
}
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ context.Context
|
|
var _ grpc.ClientConn
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
const _ = grpc.SupportPackageIsVersion4
|
|
|
|
// RuntimeClient is the client API for Runtime service.
|
|
//
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
|
type RuntimeClient interface {
|
|
Create(ctx context.Context, in *CreateRequest, opts ...grpc.CallOption) (*CreateResponse, error)
|
|
Read(ctx context.Context, in *ReadRequest, opts ...grpc.CallOption) (*ReadResponse, error)
|
|
Delete(ctx context.Context, in *DeleteRequest, opts ...grpc.CallOption) (*DeleteResponse, error)
|
|
Update(ctx context.Context, in *UpdateRequest, opts ...grpc.CallOption) (*UpdateResponse, error)
|
|
Logs(ctx context.Context, in *LogsRequest, opts ...grpc.CallOption) (Runtime_LogsClient, error)
|
|
}
|
|
|
|
type runtimeClient struct {
|
|
cc *grpc.ClientConn
|
|
}
|
|
|
|
func NewRuntimeClient(cc *grpc.ClientConn) RuntimeClient {
|
|
return &runtimeClient{cc}
|
|
}
|
|
|
|
func (c *runtimeClient) Create(ctx context.Context, in *CreateRequest, opts ...grpc.CallOption) (*CreateResponse, error) {
|
|
out := new(CreateResponse)
|
|
err := c.cc.Invoke(ctx, "/go.micro.runtime.Runtime/Create", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *runtimeClient) Read(ctx context.Context, in *ReadRequest, opts ...grpc.CallOption) (*ReadResponse, error) {
|
|
out := new(ReadResponse)
|
|
err := c.cc.Invoke(ctx, "/go.micro.runtime.Runtime/Read", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *runtimeClient) Delete(ctx context.Context, in *DeleteRequest, opts ...grpc.CallOption) (*DeleteResponse, error) {
|
|
out := new(DeleteResponse)
|
|
err := c.cc.Invoke(ctx, "/go.micro.runtime.Runtime/Delete", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *runtimeClient) Update(ctx context.Context, in *UpdateRequest, opts ...grpc.CallOption) (*UpdateResponse, error) {
|
|
out := new(UpdateResponse)
|
|
err := c.cc.Invoke(ctx, "/go.micro.runtime.Runtime/Update", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *runtimeClient) Logs(ctx context.Context, in *LogsRequest, opts ...grpc.CallOption) (Runtime_LogsClient, error) {
|
|
stream, err := c.cc.NewStream(ctx, &_Runtime_serviceDesc.Streams[0], "/go.micro.runtime.Runtime/Logs", opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
x := &runtimeLogsClient{stream}
|
|
if err := x.ClientStream.SendMsg(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if err := x.ClientStream.CloseSend(); err != nil {
|
|
return nil, err
|
|
}
|
|
return x, nil
|
|
}
|
|
|
|
type Runtime_LogsClient interface {
|
|
Recv() (*LogRecord, error)
|
|
grpc.ClientStream
|
|
}
|
|
|
|
type runtimeLogsClient struct {
|
|
grpc.ClientStream
|
|
}
|
|
|
|
func (x *runtimeLogsClient) Recv() (*LogRecord, error) {
|
|
m := new(LogRecord)
|
|
if err := x.ClientStream.RecvMsg(m); err != nil {
|
|
return nil, err
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
// RuntimeServer is the server API for Runtime service.
|
|
type RuntimeServer interface {
|
|
Create(context.Context, *CreateRequest) (*CreateResponse, error)
|
|
Read(context.Context, *ReadRequest) (*ReadResponse, error)
|
|
Delete(context.Context, *DeleteRequest) (*DeleteResponse, error)
|
|
Update(context.Context, *UpdateRequest) (*UpdateResponse, error)
|
|
Logs(*LogsRequest, Runtime_LogsServer) error
|
|
}
|
|
|
|
// UnimplementedRuntimeServer can be embedded to have forward compatible implementations.
|
|
type UnimplementedRuntimeServer struct {
|
|
}
|
|
|
|
func (*UnimplementedRuntimeServer) Create(ctx context.Context, req *CreateRequest) (*CreateResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Create not implemented")
|
|
}
|
|
func (*UnimplementedRuntimeServer) Read(ctx context.Context, req *ReadRequest) (*ReadResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Read not implemented")
|
|
}
|
|
func (*UnimplementedRuntimeServer) Delete(ctx context.Context, req *DeleteRequest) (*DeleteResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Delete not implemented")
|
|
}
|
|
func (*UnimplementedRuntimeServer) Update(ctx context.Context, req *UpdateRequest) (*UpdateResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Update not implemented")
|
|
}
|
|
func (*UnimplementedRuntimeServer) Logs(req *LogsRequest, srv Runtime_LogsServer) error {
|
|
return status.Errorf(codes.Unimplemented, "method Logs not implemented")
|
|
}
|
|
|
|
func RegisterRuntimeServer(s *grpc.Server, srv RuntimeServer) {
|
|
s.RegisterService(&_Runtime_serviceDesc, srv)
|
|
}
|
|
|
|
func _Runtime_Create_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(CreateRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(RuntimeServer).Create(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/go.micro.runtime.Runtime/Create",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(RuntimeServer).Create(ctx, req.(*CreateRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Runtime_Read_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ReadRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(RuntimeServer).Read(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/go.micro.runtime.Runtime/Read",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(RuntimeServer).Read(ctx, req.(*ReadRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Runtime_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(DeleteRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(RuntimeServer).Delete(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/go.micro.runtime.Runtime/Delete",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(RuntimeServer).Delete(ctx, req.(*DeleteRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Runtime_Update_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UpdateRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(RuntimeServer).Update(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/go.micro.runtime.Runtime/Update",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(RuntimeServer).Update(ctx, req.(*UpdateRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Runtime_Logs_Handler(srv interface{}, stream grpc.ServerStream) error {
|
|
m := new(LogsRequest)
|
|
if err := stream.RecvMsg(m); err != nil {
|
|
return err
|
|
}
|
|
return srv.(RuntimeServer).Logs(m, &runtimeLogsServer{stream})
|
|
}
|
|
|
|
type Runtime_LogsServer interface {
|
|
Send(*LogRecord) error
|
|
grpc.ServerStream
|
|
}
|
|
|
|
type runtimeLogsServer struct {
|
|
grpc.ServerStream
|
|
}
|
|
|
|
func (x *runtimeLogsServer) Send(m *LogRecord) error {
|
|
return x.ServerStream.SendMsg(m)
|
|
}
|
|
|
|
var _Runtime_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "go.micro.runtime.Runtime",
|
|
HandlerType: (*RuntimeServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Create",
|
|
Handler: _Runtime_Create_Handler,
|
|
},
|
|
{
|
|
MethodName: "Read",
|
|
Handler: _Runtime_Read_Handler,
|
|
},
|
|
{
|
|
MethodName: "Delete",
|
|
Handler: _Runtime_Delete_Handler,
|
|
},
|
|
{
|
|
MethodName: "Update",
|
|
Handler: _Runtime_Update_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{
|
|
{
|
|
StreamName: "Logs",
|
|
Handler: _Runtime_Logs_Handler,
|
|
ServerStreams: true,
|
|
},
|
|
},
|
|
Metadata: "runtime/service/proto/runtime.proto",
|
|
}
|