Documentation ¶
Overview ¶
Package grpc_reflection_v1alpha is a generated protocol buffer package.
It is generated from these files:
grpc_reflection_v1alpha/reflection.proto
It has these top-level messages:
ServerReflectionRequest ExtensionRequest ServerReflectionResponse FileDescriptorResponse ExtensionNumberResponse ListServiceResponse ServiceResponse ErrorResponse
Index ¶
- func RegisterServerReflectionServer(s *grpc.Server, srv ServerReflectionServer)
- type ErrorResponse
- type ExtensionNumberResponse
- func (*ExtensionNumberResponse) Descriptor() ([]byte, []int)
- func (m *ExtensionNumberResponse) GetBaseTypeName() string
- func (m *ExtensionNumberResponse) GetExtensionNumber() []int32
- func (*ExtensionNumberResponse) ProtoMessage()
- func (m *ExtensionNumberResponse) Reset()
- func (m *ExtensionNumberResponse) String() string
- type ExtensionRequest
- type FileDescriptorResponse
- type ListServiceResponse
- type ServerReflectionClient
- type ServerReflectionRequest
- func (*ServerReflectionRequest) Descriptor() ([]byte, []int)
- func (m *ServerReflectionRequest) GetAllExtensionNumbersOfType() string
- func (m *ServerReflectionRequest) GetFileByFilename() string
- func (m *ServerReflectionRequest) GetFileContainingExtension() *ExtensionRequest
- func (m *ServerReflectionRequest) GetFileContainingSymbol() string
- func (m *ServerReflectionRequest) GetHost() string
- func (m *ServerReflectionRequest) GetListServices() string
- func (m *ServerReflectionRequest) GetMessageRequest() isServerReflectionRequest_MessageRequest
- func (*ServerReflectionRequest) ProtoMessage()
- func (m *ServerReflectionRequest) Reset()
- func (m *ServerReflectionRequest) String() string
- func (*ServerReflectionRequest) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, ...)
- type ServerReflectionRequest_AllExtensionNumbersOfType
- type ServerReflectionRequest_FileByFilename
- type ServerReflectionRequest_FileContainingExtension
- type ServerReflectionRequest_FileContainingSymbol
- type ServerReflectionRequest_ListServices
- type ServerReflectionResponse
- func (*ServerReflectionResponse) Descriptor() ([]byte, []int)
- func (m *ServerReflectionResponse) GetAllExtensionNumbersResponse() *ExtensionNumberResponse
- func (m *ServerReflectionResponse) GetErrorResponse() *ErrorResponse
- func (m *ServerReflectionResponse) GetFileDescriptorResponse() *FileDescriptorResponse
- func (m *ServerReflectionResponse) GetListServicesResponse() *ListServiceResponse
- func (m *ServerReflectionResponse) GetMessageResponse() isServerReflectionResponse_MessageResponse
- func (m *ServerReflectionResponse) GetOriginalRequest() *ServerReflectionRequest
- func (m *ServerReflectionResponse) GetValidHost() string
- func (*ServerReflectionResponse) ProtoMessage()
- func (m *ServerReflectionResponse) Reset()
- func (m *ServerReflectionResponse) String() string
- func (*ServerReflectionResponse) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, ...)
- type ServerReflectionResponse_AllExtensionNumbersResponse
- type ServerReflectionResponse_ErrorResponse
- type ServerReflectionResponse_FileDescriptorResponse
- type ServerReflectionResponse_ListServicesResponse
- type ServerReflectionServer
- type ServerReflection_ServerReflectionInfoClient
- type ServerReflection_ServerReflectionInfoServer
- type ServiceResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func RegisterServerReflectionServer ¶
func RegisterServerReflectionServer(s *grpc.Server, srv ServerReflectionServer)
Types ¶
type ErrorResponse ¶
type ErrorResponse struct { // This field uses the error codes defined in grpc::StatusCode. ErrorCode int32 `protobuf:"varint,1,opt,name=error_code,json=errorCode" json:"error_code,omitempty"` ErrorMessage string `protobuf:"bytes,2,opt,name=error_message,json=errorMessage" json:"error_message,omitempty"` }
The error code and error message sent by the server when an error occurs.
func (*ErrorResponse) Descriptor ¶
func (*ErrorResponse) Descriptor() ([]byte, []int)
func (*ErrorResponse) GetErrorCode ¶ added in v1.6.0
func (m *ErrorResponse) GetErrorCode() int32
func (*ErrorResponse) GetErrorMessage ¶ added in v1.6.0
func (m *ErrorResponse) GetErrorMessage() string
func (*ErrorResponse) ProtoMessage ¶
func (*ErrorResponse) ProtoMessage()
func (*ErrorResponse) Reset ¶
func (m *ErrorResponse) Reset()
func (*ErrorResponse) String ¶
func (m *ErrorResponse) String() string
type ExtensionNumberResponse ¶
type ExtensionNumberResponse struct { // Full name of the base type, including the package name. The format // is <package>.<type> BaseTypeName string `protobuf:"bytes,1,opt,name=base_type_name,json=baseTypeName" json:"base_type_name,omitempty"` ExtensionNumber []int32 `protobuf:"varint,2,rep,packed,name=extension_number,json=extensionNumber" json:"extension_number,omitempty"` }
A list of extension numbers sent by the server answering all_extension_numbers_of_type request.
func (*ExtensionNumberResponse) Descriptor ¶
func (*ExtensionNumberResponse) Descriptor() ([]byte, []int)
func (*ExtensionNumberResponse) GetBaseTypeName ¶ added in v1.6.0
func (m *ExtensionNumberResponse) GetBaseTypeName() string
func (*ExtensionNumberResponse) GetExtensionNumber ¶ added in v1.6.0
func (m *ExtensionNumberResponse) GetExtensionNumber() []int32
func (*ExtensionNumberResponse) ProtoMessage ¶
func (*ExtensionNumberResponse) ProtoMessage()
func (*ExtensionNumberResponse) Reset ¶
func (m *ExtensionNumberResponse) Reset()
func (*ExtensionNumberResponse) String ¶
func (m *ExtensionNumberResponse) String() string
type ExtensionRequest ¶
type ExtensionRequest struct { // Fully-qualified type name. The format should be <package>.<type> ContainingType string `protobuf:"bytes,1,opt,name=containing_type,json=containingType" json:"containing_type,omitempty"` ExtensionNumber int32 `protobuf:"varint,2,opt,name=extension_number,json=extensionNumber" json:"extension_number,omitempty"` }
The type name and extension number sent by the client when requesting file_containing_extension.
func (*ExtensionRequest) Descriptor ¶
func (*ExtensionRequest) Descriptor() ([]byte, []int)
func (*ExtensionRequest) GetContainingType ¶ added in v1.6.0
func (m *ExtensionRequest) GetContainingType() string
func (*ExtensionRequest) GetExtensionNumber ¶ added in v1.6.0
func (m *ExtensionRequest) GetExtensionNumber() int32
func (*ExtensionRequest) ProtoMessage ¶
func (*ExtensionRequest) ProtoMessage()
func (*ExtensionRequest) Reset ¶
func (m *ExtensionRequest) Reset()
func (*ExtensionRequest) String ¶
func (m *ExtensionRequest) String() string
type FileDescriptorResponse ¶
type FileDescriptorResponse struct { // Serialized FileDescriptorProto messages. We avoid taking a dependency on // descriptor.proto, which uses proto2 only features, by making them opaque // bytes instead. FileDescriptorProto [][]byte `protobuf:"bytes,1,rep,name=file_descriptor_proto,json=fileDescriptorProto,proto3" json:"file_descriptor_proto,omitempty"` }
Serialized FileDescriptorProto messages sent by the server answering a file_by_filename, file_containing_symbol, or file_containing_extension request.
func (*FileDescriptorResponse) Descriptor ¶
func (*FileDescriptorResponse) Descriptor() ([]byte, []int)
func (*FileDescriptorResponse) GetFileDescriptorProto ¶ added in v1.6.0
func (m *FileDescriptorResponse) GetFileDescriptorProto() [][]byte
func (*FileDescriptorResponse) ProtoMessage ¶
func (*FileDescriptorResponse) ProtoMessage()
func (*FileDescriptorResponse) Reset ¶
func (m *FileDescriptorResponse) Reset()
func (*FileDescriptorResponse) String ¶
func (m *FileDescriptorResponse) String() string
type ListServiceResponse ¶
type ListServiceResponse struct { // The information of each service may be expanded in the future, so we use // ServiceResponse message to encapsulate it. Service []*ServiceResponse `protobuf:"bytes,1,rep,name=service" json:"service,omitempty"` }
A list of ServiceResponse sent by the server answering list_services request.
func (*ListServiceResponse) Descriptor ¶
func (*ListServiceResponse) Descriptor() ([]byte, []int)
func (*ListServiceResponse) GetService ¶
func (m *ListServiceResponse) GetService() []*ServiceResponse
func (*ListServiceResponse) ProtoMessage ¶
func (*ListServiceResponse) ProtoMessage()
func (*ListServiceResponse) Reset ¶
func (m *ListServiceResponse) Reset()
func (*ListServiceResponse) String ¶
func (m *ListServiceResponse) String() string
type ServerReflectionClient ¶
type ServerReflectionClient interface { // The reflection service is structured as a bidirectional stream, ensuring // all related requests go to a single server. ServerReflectionInfo(ctx context.Context, opts ...grpc.CallOption) (ServerReflection_ServerReflectionInfoClient, error) }
func NewServerReflectionClient ¶
func NewServerReflectionClient(cc *grpc.ClientConn) ServerReflectionClient
type ServerReflectionRequest ¶
type ServerReflectionRequest struct { Host string `protobuf:"bytes,1,opt,name=host" json:"host,omitempty"` // To use reflection service, the client should set one of the following // fields in message_request. The server distinguishes requests by their // defined field and then handles them using corresponding methods. // // Types that are valid to be assigned to MessageRequest: // *ServerReflectionRequest_FileByFilename // *ServerReflectionRequest_FileContainingSymbol // *ServerReflectionRequest_FileContainingExtension // *ServerReflectionRequest_AllExtensionNumbersOfType // *ServerReflectionRequest_ListServices MessageRequest isServerReflectionRequest_MessageRequest `protobuf_oneof:"message_request"` }
The message sent by the client when calling ServerReflectionInfo method.
func (*ServerReflectionRequest) Descriptor ¶
func (*ServerReflectionRequest) Descriptor() ([]byte, []int)
func (*ServerReflectionRequest) GetAllExtensionNumbersOfType ¶
func (m *ServerReflectionRequest) GetAllExtensionNumbersOfType() string
func (*ServerReflectionRequest) GetFileByFilename ¶
func (m *ServerReflectionRequest) GetFileByFilename() string
func (*ServerReflectionRequest) GetFileContainingExtension ¶
func (m *ServerReflectionRequest) GetFileContainingExtension() *ExtensionRequest
func (*ServerReflectionRequest) GetFileContainingSymbol ¶
func (m *ServerReflectionRequest) GetFileContainingSymbol() string
func (*ServerReflectionRequest) GetHost ¶ added in v1.6.0
func (m *ServerReflectionRequest) GetHost() string
func (*ServerReflectionRequest) GetListServices ¶
func (m *ServerReflectionRequest) GetListServices() string
func (*ServerReflectionRequest) GetMessageRequest ¶
func (m *ServerReflectionRequest) GetMessageRequest() isServerReflectionRequest_MessageRequest
func (*ServerReflectionRequest) ProtoMessage ¶
func (*ServerReflectionRequest) ProtoMessage()
func (*ServerReflectionRequest) Reset ¶
func (m *ServerReflectionRequest) Reset()
func (*ServerReflectionRequest) String ¶
func (m *ServerReflectionRequest) String() string
func (*ServerReflectionRequest) XXX_OneofFuncs ¶
func (*ServerReflectionRequest) 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.
type ServerReflectionRequest_AllExtensionNumbersOfType ¶
type ServerReflectionRequest_AllExtensionNumbersOfType struct {
AllExtensionNumbersOfType string `protobuf:"bytes,6,opt,name=all_extension_numbers_of_type,json=allExtensionNumbersOfType,oneof"`
}
type ServerReflectionRequest_FileByFilename ¶
type ServerReflectionRequest_FileByFilename struct {
FileByFilename string `protobuf:"bytes,3,opt,name=file_by_filename,json=fileByFilename,oneof"`
}
type ServerReflectionRequest_FileContainingExtension ¶
type ServerReflectionRequest_FileContainingExtension struct {
FileContainingExtension *ExtensionRequest `protobuf:"bytes,5,opt,name=file_containing_extension,json=fileContainingExtension,oneof"`
}
type ServerReflectionRequest_FileContainingSymbol ¶
type ServerReflectionRequest_FileContainingSymbol struct {
FileContainingSymbol string `protobuf:"bytes,4,opt,name=file_containing_symbol,json=fileContainingSymbol,oneof"`
}
type ServerReflectionRequest_ListServices ¶
type ServerReflectionRequest_ListServices struct {
ListServices string `protobuf:"bytes,7,opt,name=list_services,json=listServices,oneof"`
}
type ServerReflectionResponse ¶
type ServerReflectionResponse struct { ValidHost string `protobuf:"bytes,1,opt,name=valid_host,json=validHost" json:"valid_host,omitempty"` OriginalRequest *ServerReflectionRequest `protobuf:"bytes,2,opt,name=original_request,json=originalRequest" json:"original_request,omitempty"` // The server set one of the following fields according to the message_request // in the request. // // Types that are valid to be assigned to MessageResponse: // *ServerReflectionResponse_FileDescriptorResponse // *ServerReflectionResponse_AllExtensionNumbersResponse // *ServerReflectionResponse_ListServicesResponse // *ServerReflectionResponse_ErrorResponse MessageResponse isServerReflectionResponse_MessageResponse `protobuf_oneof:"message_response"` }
The message sent by the server to answer ServerReflectionInfo method.
func (*ServerReflectionResponse) Descriptor ¶
func (*ServerReflectionResponse) Descriptor() ([]byte, []int)
func (*ServerReflectionResponse) GetAllExtensionNumbersResponse ¶
func (m *ServerReflectionResponse) GetAllExtensionNumbersResponse() *ExtensionNumberResponse
func (*ServerReflectionResponse) GetErrorResponse ¶
func (m *ServerReflectionResponse) GetErrorResponse() *ErrorResponse
func (*ServerReflectionResponse) GetFileDescriptorResponse ¶
func (m *ServerReflectionResponse) GetFileDescriptorResponse() *FileDescriptorResponse
func (*ServerReflectionResponse) GetListServicesResponse ¶
func (m *ServerReflectionResponse) GetListServicesResponse() *ListServiceResponse
func (*ServerReflectionResponse) GetMessageResponse ¶
func (m *ServerReflectionResponse) GetMessageResponse() isServerReflectionResponse_MessageResponse
func (*ServerReflectionResponse) GetOriginalRequest ¶
func (m *ServerReflectionResponse) GetOriginalRequest() *ServerReflectionRequest
func (*ServerReflectionResponse) GetValidHost ¶ added in v1.6.0
func (m *ServerReflectionResponse) GetValidHost() string
func (*ServerReflectionResponse) ProtoMessage ¶
func (*ServerReflectionResponse) ProtoMessage()
func (*ServerReflectionResponse) Reset ¶
func (m *ServerReflectionResponse) Reset()
func (*ServerReflectionResponse) String ¶
func (m *ServerReflectionResponse) String() string
func (*ServerReflectionResponse) XXX_OneofFuncs ¶
func (*ServerReflectionResponse) 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.
type ServerReflectionResponse_AllExtensionNumbersResponse ¶
type ServerReflectionResponse_AllExtensionNumbersResponse struct {
AllExtensionNumbersResponse *ExtensionNumberResponse `protobuf:"bytes,5,opt,name=all_extension_numbers_response,json=allExtensionNumbersResponse,oneof"`
}
type ServerReflectionResponse_ErrorResponse ¶
type ServerReflectionResponse_ErrorResponse struct {
ErrorResponse *ErrorResponse `protobuf:"bytes,7,opt,name=error_response,json=errorResponse,oneof"`
}
type ServerReflectionResponse_FileDescriptorResponse ¶
type ServerReflectionResponse_FileDescriptorResponse struct {
FileDescriptorResponse *FileDescriptorResponse `protobuf:"bytes,4,opt,name=file_descriptor_response,json=fileDescriptorResponse,oneof"`
}
type ServerReflectionResponse_ListServicesResponse ¶
type ServerReflectionResponse_ListServicesResponse struct {
ListServicesResponse *ListServiceResponse `protobuf:"bytes,6,opt,name=list_services_response,json=listServicesResponse,oneof"`
}
type ServerReflectionServer ¶
type ServerReflectionServer interface { // The reflection service is structured as a bidirectional stream, ensuring // all related requests go to a single server. ServerReflectionInfo(ServerReflection_ServerReflectionInfoServer) error }
type ServerReflection_ServerReflectionInfoClient ¶
type ServerReflection_ServerReflectionInfoClient interface { Send(*ServerReflectionRequest) error Recv() (*ServerReflectionResponse, error) grpc.ClientStream }
type ServerReflection_ServerReflectionInfoServer ¶
type ServerReflection_ServerReflectionInfoServer interface { Send(*ServerReflectionResponse) error Recv() (*ServerReflectionRequest, error) grpc.ServerStream }
type ServiceResponse ¶
type ServiceResponse struct { // Full name of a registered service, including its package name. The format // is <package>.<service> Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` }
The information of a single service used by ListServiceResponse to answer list_services request.
func (*ServiceResponse) Descriptor ¶
func (*ServiceResponse) Descriptor() ([]byte, []int)
func (*ServiceResponse) GetName ¶ added in v1.6.0
func (m *ServiceResponse) GetName() string
func (*ServiceResponse) ProtoMessage ¶
func (*ServiceResponse) ProtoMessage()
func (*ServiceResponse) Reset ¶
func (m *ServiceResponse) Reset()
func (*ServiceResponse) String ¶
func (m *ServiceResponse) String() string