pulumi/sdk/proto/go/engine.pb.go
2018-08-31 15:56:53 -07:00

240 lines
8 KiB
Go

// Code generated by protoc-gen-go. DO NOT EDIT.
// source: engine.proto
package pulumirpc
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import empty "github.com/golang/protobuf/ptypes/empty"
import (
context "golang.org/x/net/context"
grpc "google.golang.org/grpc"
)
// 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.ProtoPackageIsVersion2 // please upgrade the proto package
// LogSeverity is the severity level of a log message. Errors are fatal; all others are informational.
type LogSeverity int32
const (
LogSeverity_DEBUG LogSeverity = 0
LogSeverity_INFO LogSeverity = 1
LogSeverity_WARNING LogSeverity = 2
LogSeverity_ERROR LogSeverity = 3
)
var LogSeverity_name = map[int32]string{
0: "DEBUG",
1: "INFO",
2: "WARNING",
3: "ERROR",
}
var LogSeverity_value = map[string]int32{
"DEBUG": 0,
"INFO": 1,
"WARNING": 2,
"ERROR": 3,
}
func (x LogSeverity) String() string {
return proto.EnumName(LogSeverity_name, int32(x))
}
func (LogSeverity) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_engine_5dfa95817201a658, []int{0}
}
type LogRequest struct {
// the logging level of this message.
Severity LogSeverity `protobuf:"varint,1,opt,name=severity,enum=pulumirpc.LogSeverity" json:"severity,omitempty"`
// the contents of the logged message.
Message string `protobuf:"bytes,2,opt,name=message" json:"message,omitempty"`
// the (optional) resource urn this log is associated with.
Urn string `protobuf:"bytes,3,opt,name=urn" json:"urn,omitempty"`
// the (optional) stream id that a stream of log messages can be associated with. This allows
// clients to not have to buffer a large set of log messages that they all want to be
// conceptually connected. Instead the messages can be sent as chunks (with the same stream id)
// and the end display can show the messages as they arrive, while still stitching them together
// into one total log message.
//
// 0/not-given means: do not associate with any stream.
StreamId int32 `protobuf:"varint,4,opt,name=streamId" json:"streamId,omitempty"`
// Optional value indicating whether this is a status message.
Ephemeral bool `protobuf:"varint,5,opt,name=ephemeral" json:"ephemeral,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *LogRequest) Reset() { *m = LogRequest{} }
func (m *LogRequest) String() string { return proto.CompactTextString(m) }
func (*LogRequest) ProtoMessage() {}
func (*LogRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_engine_5dfa95817201a658, []int{0}
}
func (m *LogRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LogRequest.Unmarshal(m, b)
}
func (m *LogRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_LogRequest.Marshal(b, m, deterministic)
}
func (dst *LogRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_LogRequest.Merge(dst, src)
}
func (m *LogRequest) XXX_Size() int {
return xxx_messageInfo_LogRequest.Size(m)
}
func (m *LogRequest) XXX_DiscardUnknown() {
xxx_messageInfo_LogRequest.DiscardUnknown(m)
}
var xxx_messageInfo_LogRequest proto.InternalMessageInfo
func (m *LogRequest) GetSeverity() LogSeverity {
if m != nil {
return m.Severity
}
return LogSeverity_DEBUG
}
func (m *LogRequest) GetMessage() string {
if m != nil {
return m.Message
}
return ""
}
func (m *LogRequest) GetUrn() string {
if m != nil {
return m.Urn
}
return ""
}
func (m *LogRequest) GetStreamId() int32 {
if m != nil {
return m.StreamId
}
return 0
}
func (m *LogRequest) GetEphemeral() bool {
if m != nil {
return m.Ephemeral
}
return false
}
func init() {
proto.RegisterType((*LogRequest)(nil), "pulumirpc.LogRequest")
proto.RegisterEnum("pulumirpc.LogSeverity", LogSeverity_name, LogSeverity_value)
}
// 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
// Client API for Engine service
type EngineClient interface {
// Log logs a global message in the engine, including errors and warnings.
Log(ctx context.Context, in *LogRequest, opts ...grpc.CallOption) (*empty.Empty, error)
}
type engineClient struct {
cc *grpc.ClientConn
}
func NewEngineClient(cc *grpc.ClientConn) EngineClient {
return &engineClient{cc}
}
func (c *engineClient) Log(ctx context.Context, in *LogRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
out := new(empty.Empty)
err := grpc.Invoke(ctx, "/pulumirpc.Engine/Log", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// Server API for Engine service
type EngineServer interface {
// Log logs a global message in the engine, including errors and warnings.
Log(context.Context, *LogRequest) (*empty.Empty, error)
}
func RegisterEngineServer(s *grpc.Server, srv EngineServer) {
s.RegisterService(&_Engine_serviceDesc, srv)
}
func _Engine_Log_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(LogRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(EngineServer).Log(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/pulumirpc.Engine/Log",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(EngineServer).Log(ctx, req.(*LogRequest))
}
return interceptor(ctx, in, info, handler)
}
var _Engine_serviceDesc = grpc.ServiceDesc{
ServiceName: "pulumirpc.Engine",
HandlerType: (*EngineServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "Log",
Handler: _Engine_Log_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "engine.proto",
}
func init() { proto.RegisterFile("engine.proto", fileDescriptor_engine_5dfa95817201a658) }
var fileDescriptor_engine_5dfa95817201a658 = []byte{
// 273 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x54, 0x90, 0x4f, 0x4b, 0xc3, 0x40,
0x10, 0xc5, 0x9b, 0xa6, 0x69, 0x93, 0xa9, 0x48, 0x18, 0xb0, 0x2c, 0xd1, 0x83, 0xf4, 0x24, 0x1e,
0xb6, 0x10, 0xc1, 0x83, 0x27, 0x15, 0x63, 0x09, 0x48, 0x0a, 0x2b, 0xe2, 0x39, 0xd5, 0x31, 0x06,
0xf2, 0xcf, 0x4d, 0x56, 0xe8, 0x17, 0xf2, 0x73, 0xba, 0x49, 0xdb, 0x68, 0x6f, 0x3b, 0xef, 0xbd,
0x7d, 0xc3, 0xfc, 0xe0, 0x88, 0x8a, 0x24, 0x2d, 0x88, 0x57, 0xb2, 0x6c, 0x4a, 0x74, 0x2a, 0x95,
0xa9, 0x3c, 0x95, 0xd5, 0x9b, 0x77, 0x9a, 0x94, 0x65, 0x92, 0xd1, 0xa2, 0x33, 0xd6, 0xea, 0x63,
0x41, 0x79, 0xd5, 0x6c, 0xb6, 0xb9, 0xf9, 0x8f, 0x01, 0xf0, 0x54, 0x26, 0x82, 0xbe, 0x14, 0xd5,
0x0d, 0xfa, 0x60, 0xd7, 0xf4, 0x4d, 0x32, 0x6d, 0x36, 0xcc, 0x38, 0x37, 0x2e, 0x8e, 0xfd, 0x19,
0xef, 0x9b, 0xb8, 0x0e, 0x3e, 0xef, 0x5c, 0xd1, 0xe7, 0x90, 0xc1, 0x24, 0xa7, 0xba, 0x8e, 0x13,
0x62, 0x43, 0xfd, 0xc5, 0x11, 0xfb, 0x11, 0x5d, 0x30, 0x95, 0x2c, 0x98, 0xd9, 0xa9, 0xed, 0x13,
0x3d, 0xdd, 0xdf, 0x48, 0x8a, 0xf3, 0xf0, 0x9d, 0x8d, 0xb4, 0x6c, 0x89, 0x7e, 0xc6, 0x33, 0x70,
0xa8, 0xfa, 0xa4, 0x9c, 0x64, 0x9c, 0x31, 0x4b, 0x9b, 0xb6, 0xf8, 0x13, 0x2e, 0x6f, 0x60, 0xfa,
0x6f, 0x3d, 0x3a, 0x60, 0x3d, 0x04, 0xf7, 0x2f, 0x4b, 0x77, 0x80, 0x36, 0x8c, 0xc2, 0xe8, 0x71,
0xe5, 0x1a, 0x38, 0x85, 0xc9, 0xeb, 0x9d, 0x88, 0xc2, 0x68, 0xe9, 0x0e, 0xdb, 0x44, 0x20, 0xc4,
0x4a, 0xb8, 0xa6, 0x7f, 0x0b, 0xe3, 0xa0, 0x83, 0x83, 0xd7, 0x60, 0xea, 0x16, 0x3c, 0x39, 0x3c,
0x6a, 0x77, 0xbd, 0x37, 0xe3, 0x5b, 0x54, 0x7c, 0x8f, 0x8a, 0x07, 0x2d, 0xaa, 0xf9, 0x60, 0x3d,
0xee, 0x94, 0xab, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc6, 0xf2, 0x12, 0xca, 0x65, 0x01, 0x00,
0x00,
}