Documentation
¶
Index ¶
- Variables
- type ServerDef
- func (*ServerDef) Descriptor() ([]byte, []int)
- func (m *ServerDef) GetGrpcServer() *proto3.ServerConf
- func (m *ServerDef) GetHttpServer() *proto1.ServerConf
- func (m *ServerDef) GetServer() isServerDef_Server
- func (m *ServerDef) GetType() ServerDef_Type
- func (m *ServerDef) GetUdpServer() *proto2.ServerConf
- func (*ServerDef) ProtoMessage()
- func (m *ServerDef) Reset()
- func (m *ServerDef) String() string
- func (m *ServerDef) XXX_DiscardUnknown()
- func (m *ServerDef) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ServerDef) XXX_Merge(src proto.Message)
- func (*ServerDef) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, ...)
- func (m *ServerDef) XXX_Size() int
- func (m *ServerDef) XXX_Unmarshal(b []byte) error
- type ServerDef_GrpcServer
- type ServerDef_HttpServer
- type ServerDef_Type
- type ServerDef_UdpServer
Constants ¶
This section is empty.
Variables ¶
View Source
var ServerDef_Type_name = map[int32]string{
0: "HTTP",
1: "UDP",
2: "GRPC",
}
View Source
var ServerDef_Type_value = map[string]int32{
"HTTP": 0,
"UDP": 1,
"GRPC": 2,
}
Functions ¶
This section is empty.
Types ¶
type ServerDef ¶
type ServerDef struct { Type *ServerDef_Type `protobuf:"varint,1,req,name=type,enum=cloudprober.servers.ServerDef_Type" json:"type,omitempty"` // Types that are valid to be assigned to Server: // *ServerDef_HttpServer // *ServerDef_UdpServer // *ServerDef_GrpcServer Server isServerDef_Server `protobuf_oneof:"server"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*ServerDef) Descriptor ¶
func (*ServerDef) GetGrpcServer ¶
func (m *ServerDef) GetGrpcServer() *proto3.ServerConf
func (*ServerDef) GetHttpServer ¶
func (m *ServerDef) GetHttpServer() *proto1.ServerConf
func (*ServerDef) GetType ¶
func (m *ServerDef) GetType() ServerDef_Type
func (*ServerDef) GetUdpServer ¶
func (m *ServerDef) GetUdpServer() *proto2.ServerConf
func (*ServerDef) ProtoMessage ¶
func (*ServerDef) ProtoMessage()
func (*ServerDef) XXX_DiscardUnknown ¶
func (m *ServerDef) XXX_DiscardUnknown()
func (*ServerDef) XXX_Marshal ¶
func (*ServerDef) XXX_OneofFuncs ¶
func (*ServerDef) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{})
XXX_OneofFuncs is for the internal use of the proto package.
func (*ServerDef) XXX_Unmarshal ¶
type ServerDef_GrpcServer ¶
type ServerDef_GrpcServer struct {
GrpcServer *proto3.ServerConf `protobuf:"bytes,4,opt,name=grpc_server,json=grpcServer,oneof"`
}
type ServerDef_HttpServer ¶
type ServerDef_HttpServer struct {
HttpServer *proto1.ServerConf `protobuf:"bytes,2,opt,name=http_server,json=httpServer,oneof"`
}
type ServerDef_Type ¶
type ServerDef_Type int32
const ( ServerDef_HTTP ServerDef_Type = 0 ServerDef_UDP ServerDef_Type = 1 ServerDef_GRPC ServerDef_Type = 2 )
func (ServerDef_Type) Enum ¶
func (x ServerDef_Type) Enum() *ServerDef_Type
func (ServerDef_Type) EnumDescriptor ¶
func (ServerDef_Type) EnumDescriptor() ([]byte, []int)
func (ServerDef_Type) String ¶
func (x ServerDef_Type) String() string
func (*ServerDef_Type) UnmarshalJSON ¶
func (x *ServerDef_Type) UnmarshalJSON(data []byte) error
type ServerDef_UdpServer ¶
type ServerDef_UdpServer struct {
UdpServer *proto2.ServerConf `protobuf:"bytes,3,opt,name=udp_server,json=udpServer,oneof"`
}
Click to show internal directories.
Click to hide internal directories.