...

Source file src/google.golang.org/grpc/reflection/grpc_reflection_v1alpha/reflection.pb.go

Documentation: google.golang.org/grpc/reflection/grpc_reflection_v1alpha

     1  // Copyright 2016 The gRPC Authors
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //     http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  // Service exported by server reflection
    15  
    16  // Warning: this entire file is deprecated. Use this instead:
    17  // https://github.com/grpc/grpc-proto/blob/master/grpc/reflection/v1/reflection.proto
    18  
    19  // Code generated by protoc-gen-go. DO NOT EDIT.
    20  // versions:
    21  // 	protoc-gen-go v1.33.0
    22  // 	protoc        v4.25.2
    23  // grpc/reflection/v1alpha/reflection.proto is a deprecated file.
    24  
    25  package grpc_reflection_v1alpha
    26  
    27  import (
    28  	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
    29  	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
    30  	reflect "reflect"
    31  	sync "sync"
    32  )
    33  
    34  const (
    35  	// Verify that this generated code is sufficiently up-to-date.
    36  	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
    37  	// Verify that runtime/protoimpl is sufficiently up-to-date.
    38  	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
    39  )
    40  
    41  // The message sent by the client when calling ServerReflectionInfo method.
    42  //
    43  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
    44  type ServerReflectionRequest struct {
    45  	state         protoimpl.MessageState
    46  	sizeCache     protoimpl.SizeCache
    47  	unknownFields protoimpl.UnknownFields
    48  
    49  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
    50  	Host string `protobuf:"bytes,1,opt,name=host,proto3" json:"host,omitempty"`
    51  	// To use reflection service, the client should set one of the following
    52  	// fields in message_request. The server distinguishes requests by their
    53  	// defined field and then handles them using corresponding methods.
    54  	//
    55  	// Types that are assignable to MessageRequest:
    56  	//
    57  	//	*ServerReflectionRequest_FileByFilename
    58  	//	*ServerReflectionRequest_FileContainingSymbol
    59  	//	*ServerReflectionRequest_FileContainingExtension
    60  	//	*ServerReflectionRequest_AllExtensionNumbersOfType
    61  	//	*ServerReflectionRequest_ListServices
    62  	MessageRequest isServerReflectionRequest_MessageRequest `protobuf_oneof:"message_request"`
    63  }
    64  
    65  func (x *ServerReflectionRequest) Reset() {
    66  	*x = ServerReflectionRequest{}
    67  	if protoimpl.UnsafeEnabled {
    68  		mi := &file_grpc_reflection_v1alpha_reflection_proto_msgTypes[0]
    69  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    70  		ms.StoreMessageInfo(mi)
    71  	}
    72  }
    73  
    74  func (x *ServerReflectionRequest) String() string {
    75  	return protoimpl.X.MessageStringOf(x)
    76  }
    77  
    78  func (*ServerReflectionRequest) ProtoMessage() {}
    79  
    80  func (x *ServerReflectionRequest) ProtoReflect() protoreflect.Message {
    81  	mi := &file_grpc_reflection_v1alpha_reflection_proto_msgTypes[0]
    82  	if protoimpl.UnsafeEnabled && x != nil {
    83  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    84  		if ms.LoadMessageInfo() == nil {
    85  			ms.StoreMessageInfo(mi)
    86  		}
    87  		return ms
    88  	}
    89  	return mi.MessageOf(x)
    90  }
    91  
    92  // Deprecated: Use ServerReflectionRequest.ProtoReflect.Descriptor instead.
    93  func (*ServerReflectionRequest) Descriptor() ([]byte, []int) {
    94  	return file_grpc_reflection_v1alpha_reflection_proto_rawDescGZIP(), []int{0}
    95  }
    96  
    97  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
    98  func (x *ServerReflectionRequest) GetHost() string {
    99  	if x != nil {
   100  		return x.Host
   101  	}
   102  	return ""
   103  }
   104  
   105  func (m *ServerReflectionRequest) GetMessageRequest() isServerReflectionRequest_MessageRequest {
   106  	if m != nil {
   107  		return m.MessageRequest
   108  	}
   109  	return nil
   110  }
   111  
   112  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   113  func (x *ServerReflectionRequest) GetFileByFilename() string {
   114  	if x, ok := x.GetMessageRequest().(*ServerReflectionRequest_FileByFilename); ok {
   115  		return x.FileByFilename
   116  	}
   117  	return ""
   118  }
   119  
   120  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   121  func (x *ServerReflectionRequest) GetFileContainingSymbol() string {
   122  	if x, ok := x.GetMessageRequest().(*ServerReflectionRequest_FileContainingSymbol); ok {
   123  		return x.FileContainingSymbol
   124  	}
   125  	return ""
   126  }
   127  
   128  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   129  func (x *ServerReflectionRequest) GetFileContainingExtension() *ExtensionRequest {
   130  	if x, ok := x.GetMessageRequest().(*ServerReflectionRequest_FileContainingExtension); ok {
   131  		return x.FileContainingExtension
   132  	}
   133  	return nil
   134  }
   135  
   136  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   137  func (x *ServerReflectionRequest) GetAllExtensionNumbersOfType() string {
   138  	if x, ok := x.GetMessageRequest().(*ServerReflectionRequest_AllExtensionNumbersOfType); ok {
   139  		return x.AllExtensionNumbersOfType
   140  	}
   141  	return ""
   142  }
   143  
   144  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   145  func (x *ServerReflectionRequest) GetListServices() string {
   146  	if x, ok := x.GetMessageRequest().(*ServerReflectionRequest_ListServices); ok {
   147  		return x.ListServices
   148  	}
   149  	return ""
   150  }
   151  
   152  type isServerReflectionRequest_MessageRequest interface {
   153  	isServerReflectionRequest_MessageRequest()
   154  }
   155  
   156  type ServerReflectionRequest_FileByFilename struct {
   157  	// Find a proto file by the file name.
   158  	//
   159  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   160  	FileByFilename string `protobuf:"bytes,3,opt,name=file_by_filename,json=fileByFilename,proto3,oneof"`
   161  }
   162  
   163  type ServerReflectionRequest_FileContainingSymbol struct {
   164  	// Find the proto file that declares the given fully-qualified symbol name.
   165  	// This field should be a fully-qualified symbol name
   166  	// (e.g. <package>.<service>[.<method>] or <package>.<type>).
   167  	//
   168  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   169  	FileContainingSymbol string `protobuf:"bytes,4,opt,name=file_containing_symbol,json=fileContainingSymbol,proto3,oneof"`
   170  }
   171  
   172  type ServerReflectionRequest_FileContainingExtension struct {
   173  	// Find the proto file which defines an extension extending the given
   174  	// message type with the given field number.
   175  	//
   176  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   177  	FileContainingExtension *ExtensionRequest `protobuf:"bytes,5,opt,name=file_containing_extension,json=fileContainingExtension,proto3,oneof"`
   178  }
   179  
   180  type ServerReflectionRequest_AllExtensionNumbersOfType struct {
   181  	// Finds the tag numbers used by all known extensions of extendee_type, and
   182  	// appends them to ExtensionNumberResponse in an undefined order.
   183  	// Its corresponding method is best-effort: it's not guaranteed that the
   184  	// reflection service will implement this method, and it's not guaranteed
   185  	// that this method will provide all extensions. Returns
   186  	// StatusCode::UNIMPLEMENTED if it's not implemented.
   187  	// This field should be a fully-qualified type name. The format is
   188  	// <package>.<type>
   189  	//
   190  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   191  	AllExtensionNumbersOfType string `protobuf:"bytes,6,opt,name=all_extension_numbers_of_type,json=allExtensionNumbersOfType,proto3,oneof"`
   192  }
   193  
   194  type ServerReflectionRequest_ListServices struct {
   195  	// List the full names of registered services. The content will not be
   196  	// checked.
   197  	//
   198  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   199  	ListServices string `protobuf:"bytes,7,opt,name=list_services,json=listServices,proto3,oneof"`
   200  }
   201  
   202  func (*ServerReflectionRequest_FileByFilename) isServerReflectionRequest_MessageRequest() {}
   203  
   204  func (*ServerReflectionRequest_FileContainingSymbol) isServerReflectionRequest_MessageRequest() {}
   205  
   206  func (*ServerReflectionRequest_FileContainingExtension) isServerReflectionRequest_MessageRequest() {}
   207  
   208  func (*ServerReflectionRequest_AllExtensionNumbersOfType) isServerReflectionRequest_MessageRequest() {
   209  }
   210  
   211  func (*ServerReflectionRequest_ListServices) isServerReflectionRequest_MessageRequest() {}
   212  
   213  // The type name and extension number sent by the client when requesting
   214  // file_containing_extension.
   215  //
   216  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   217  type ExtensionRequest struct {
   218  	state         protoimpl.MessageState
   219  	sizeCache     protoimpl.SizeCache
   220  	unknownFields protoimpl.UnknownFields
   221  
   222  	// Fully-qualified type name. The format should be <package>.<type>
   223  	//
   224  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   225  	ContainingType string `protobuf:"bytes,1,opt,name=containing_type,json=containingType,proto3" json:"containing_type,omitempty"`
   226  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   227  	ExtensionNumber int32 `protobuf:"varint,2,opt,name=extension_number,json=extensionNumber,proto3" json:"extension_number,omitempty"`
   228  }
   229  
   230  func (x *ExtensionRequest) Reset() {
   231  	*x = ExtensionRequest{}
   232  	if protoimpl.UnsafeEnabled {
   233  		mi := &file_grpc_reflection_v1alpha_reflection_proto_msgTypes[1]
   234  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   235  		ms.StoreMessageInfo(mi)
   236  	}
   237  }
   238  
   239  func (x *ExtensionRequest) String() string {
   240  	return protoimpl.X.MessageStringOf(x)
   241  }
   242  
   243  func (*ExtensionRequest) ProtoMessage() {}
   244  
   245  func (x *ExtensionRequest) ProtoReflect() protoreflect.Message {
   246  	mi := &file_grpc_reflection_v1alpha_reflection_proto_msgTypes[1]
   247  	if protoimpl.UnsafeEnabled && x != nil {
   248  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   249  		if ms.LoadMessageInfo() == nil {
   250  			ms.StoreMessageInfo(mi)
   251  		}
   252  		return ms
   253  	}
   254  	return mi.MessageOf(x)
   255  }
   256  
   257  // Deprecated: Use ExtensionRequest.ProtoReflect.Descriptor instead.
   258  func (*ExtensionRequest) Descriptor() ([]byte, []int) {
   259  	return file_grpc_reflection_v1alpha_reflection_proto_rawDescGZIP(), []int{1}
   260  }
   261  
   262  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   263  func (x *ExtensionRequest) GetContainingType() string {
   264  	if x != nil {
   265  		return x.ContainingType
   266  	}
   267  	return ""
   268  }
   269  
   270  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   271  func (x *ExtensionRequest) GetExtensionNumber() int32 {
   272  	if x != nil {
   273  		return x.ExtensionNumber
   274  	}
   275  	return 0
   276  }
   277  
   278  // The message sent by the server to answer ServerReflectionInfo method.
   279  //
   280  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   281  type ServerReflectionResponse struct {
   282  	state         protoimpl.MessageState
   283  	sizeCache     protoimpl.SizeCache
   284  	unknownFields protoimpl.UnknownFields
   285  
   286  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   287  	ValidHost string `protobuf:"bytes,1,opt,name=valid_host,json=validHost,proto3" json:"valid_host,omitempty"`
   288  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   289  	OriginalRequest *ServerReflectionRequest `protobuf:"bytes,2,opt,name=original_request,json=originalRequest,proto3" json:"original_request,omitempty"`
   290  	// The server set one of the following fields according to the message_request
   291  	// in the request.
   292  	//
   293  	// Types that are assignable to MessageResponse:
   294  	//
   295  	//	*ServerReflectionResponse_FileDescriptorResponse
   296  	//	*ServerReflectionResponse_AllExtensionNumbersResponse
   297  	//	*ServerReflectionResponse_ListServicesResponse
   298  	//	*ServerReflectionResponse_ErrorResponse
   299  	MessageResponse isServerReflectionResponse_MessageResponse `protobuf_oneof:"message_response"`
   300  }
   301  
   302  func (x *ServerReflectionResponse) Reset() {
   303  	*x = ServerReflectionResponse{}
   304  	if protoimpl.UnsafeEnabled {
   305  		mi := &file_grpc_reflection_v1alpha_reflection_proto_msgTypes[2]
   306  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   307  		ms.StoreMessageInfo(mi)
   308  	}
   309  }
   310  
   311  func (x *ServerReflectionResponse) String() string {
   312  	return protoimpl.X.MessageStringOf(x)
   313  }
   314  
   315  func (*ServerReflectionResponse) ProtoMessage() {}
   316  
   317  func (x *ServerReflectionResponse) ProtoReflect() protoreflect.Message {
   318  	mi := &file_grpc_reflection_v1alpha_reflection_proto_msgTypes[2]
   319  	if protoimpl.UnsafeEnabled && x != nil {
   320  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   321  		if ms.LoadMessageInfo() == nil {
   322  			ms.StoreMessageInfo(mi)
   323  		}
   324  		return ms
   325  	}
   326  	return mi.MessageOf(x)
   327  }
   328  
   329  // Deprecated: Use ServerReflectionResponse.ProtoReflect.Descriptor instead.
   330  func (*ServerReflectionResponse) Descriptor() ([]byte, []int) {
   331  	return file_grpc_reflection_v1alpha_reflection_proto_rawDescGZIP(), []int{2}
   332  }
   333  
   334  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   335  func (x *ServerReflectionResponse) GetValidHost() string {
   336  	if x != nil {
   337  		return x.ValidHost
   338  	}
   339  	return ""
   340  }
   341  
   342  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   343  func (x *ServerReflectionResponse) GetOriginalRequest() *ServerReflectionRequest {
   344  	if x != nil {
   345  		return x.OriginalRequest
   346  	}
   347  	return nil
   348  }
   349  
   350  func (m *ServerReflectionResponse) GetMessageResponse() isServerReflectionResponse_MessageResponse {
   351  	if m != nil {
   352  		return m.MessageResponse
   353  	}
   354  	return nil
   355  }
   356  
   357  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   358  func (x *ServerReflectionResponse) GetFileDescriptorResponse() *FileDescriptorResponse {
   359  	if x, ok := x.GetMessageResponse().(*ServerReflectionResponse_FileDescriptorResponse); ok {
   360  		return x.FileDescriptorResponse
   361  	}
   362  	return nil
   363  }
   364  
   365  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   366  func (x *ServerReflectionResponse) GetAllExtensionNumbersResponse() *ExtensionNumberResponse {
   367  	if x, ok := x.GetMessageResponse().(*ServerReflectionResponse_AllExtensionNumbersResponse); ok {
   368  		return x.AllExtensionNumbersResponse
   369  	}
   370  	return nil
   371  }
   372  
   373  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   374  func (x *ServerReflectionResponse) GetListServicesResponse() *ListServiceResponse {
   375  	if x, ok := x.GetMessageResponse().(*ServerReflectionResponse_ListServicesResponse); ok {
   376  		return x.ListServicesResponse
   377  	}
   378  	return nil
   379  }
   380  
   381  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   382  func (x *ServerReflectionResponse) GetErrorResponse() *ErrorResponse {
   383  	if x, ok := x.GetMessageResponse().(*ServerReflectionResponse_ErrorResponse); ok {
   384  		return x.ErrorResponse
   385  	}
   386  	return nil
   387  }
   388  
   389  type isServerReflectionResponse_MessageResponse interface {
   390  	isServerReflectionResponse_MessageResponse()
   391  }
   392  
   393  type ServerReflectionResponse_FileDescriptorResponse struct {
   394  	// This message is used to answer file_by_filename, file_containing_symbol,
   395  	// file_containing_extension requests with transitive dependencies. As
   396  	// the repeated label is not allowed in oneof fields, we use a
   397  	// FileDescriptorResponse message to encapsulate the repeated fields.
   398  	// The reflection service is allowed to avoid sending FileDescriptorProtos
   399  	// that were previously sent in response to earlier requests in the stream.
   400  	//
   401  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   402  	FileDescriptorResponse *FileDescriptorResponse `protobuf:"bytes,4,opt,name=file_descriptor_response,json=fileDescriptorResponse,proto3,oneof"`
   403  }
   404  
   405  type ServerReflectionResponse_AllExtensionNumbersResponse struct {
   406  	// This message is used to answer all_extension_numbers_of_type requst.
   407  	//
   408  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   409  	AllExtensionNumbersResponse *ExtensionNumberResponse `protobuf:"bytes,5,opt,name=all_extension_numbers_response,json=allExtensionNumbersResponse,proto3,oneof"`
   410  }
   411  
   412  type ServerReflectionResponse_ListServicesResponse struct {
   413  	// This message is used to answer list_services request.
   414  	//
   415  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   416  	ListServicesResponse *ListServiceResponse `protobuf:"bytes,6,opt,name=list_services_response,json=listServicesResponse,proto3,oneof"`
   417  }
   418  
   419  type ServerReflectionResponse_ErrorResponse struct {
   420  	// This message is used when an error occurs.
   421  	//
   422  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   423  	ErrorResponse *ErrorResponse `protobuf:"bytes,7,opt,name=error_response,json=errorResponse,proto3,oneof"`
   424  }
   425  
   426  func (*ServerReflectionResponse_FileDescriptorResponse) isServerReflectionResponse_MessageResponse() {
   427  }
   428  
   429  func (*ServerReflectionResponse_AllExtensionNumbersResponse) isServerReflectionResponse_MessageResponse() {
   430  }
   431  
   432  func (*ServerReflectionResponse_ListServicesResponse) isServerReflectionResponse_MessageResponse() {}
   433  
   434  func (*ServerReflectionResponse_ErrorResponse) isServerReflectionResponse_MessageResponse() {}
   435  
   436  // Serialized FileDescriptorProto messages sent by the server answering
   437  // a file_by_filename, file_containing_symbol, or file_containing_extension
   438  // request.
   439  //
   440  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   441  type FileDescriptorResponse struct {
   442  	state         protoimpl.MessageState
   443  	sizeCache     protoimpl.SizeCache
   444  	unknownFields protoimpl.UnknownFields
   445  
   446  	// Serialized FileDescriptorProto messages. We avoid taking a dependency on
   447  	// descriptor.proto, which uses proto2 only features, by making them opaque
   448  	// bytes instead.
   449  	//
   450  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   451  	FileDescriptorProto [][]byte `protobuf:"bytes,1,rep,name=file_descriptor_proto,json=fileDescriptorProto,proto3" json:"file_descriptor_proto,omitempty"`
   452  }
   453  
   454  func (x *FileDescriptorResponse) Reset() {
   455  	*x = FileDescriptorResponse{}
   456  	if protoimpl.UnsafeEnabled {
   457  		mi := &file_grpc_reflection_v1alpha_reflection_proto_msgTypes[3]
   458  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   459  		ms.StoreMessageInfo(mi)
   460  	}
   461  }
   462  
   463  func (x *FileDescriptorResponse) String() string {
   464  	return protoimpl.X.MessageStringOf(x)
   465  }
   466  
   467  func (*FileDescriptorResponse) ProtoMessage() {}
   468  
   469  func (x *FileDescriptorResponse) ProtoReflect() protoreflect.Message {
   470  	mi := &file_grpc_reflection_v1alpha_reflection_proto_msgTypes[3]
   471  	if protoimpl.UnsafeEnabled && x != nil {
   472  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   473  		if ms.LoadMessageInfo() == nil {
   474  			ms.StoreMessageInfo(mi)
   475  		}
   476  		return ms
   477  	}
   478  	return mi.MessageOf(x)
   479  }
   480  
   481  // Deprecated: Use FileDescriptorResponse.ProtoReflect.Descriptor instead.
   482  func (*FileDescriptorResponse) Descriptor() ([]byte, []int) {
   483  	return file_grpc_reflection_v1alpha_reflection_proto_rawDescGZIP(), []int{3}
   484  }
   485  
   486  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   487  func (x *FileDescriptorResponse) GetFileDescriptorProto() [][]byte {
   488  	if x != nil {
   489  		return x.FileDescriptorProto
   490  	}
   491  	return nil
   492  }
   493  
   494  // A list of extension numbers sent by the server answering
   495  // all_extension_numbers_of_type request.
   496  //
   497  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   498  type ExtensionNumberResponse struct {
   499  	state         protoimpl.MessageState
   500  	sizeCache     protoimpl.SizeCache
   501  	unknownFields protoimpl.UnknownFields
   502  
   503  	// Full name of the base type, including the package name. The format
   504  	// is <package>.<type>
   505  	//
   506  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   507  	BaseTypeName string `protobuf:"bytes,1,opt,name=base_type_name,json=baseTypeName,proto3" json:"base_type_name,omitempty"`
   508  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   509  	ExtensionNumber []int32 `protobuf:"varint,2,rep,packed,name=extension_number,json=extensionNumber,proto3" json:"extension_number,omitempty"`
   510  }
   511  
   512  func (x *ExtensionNumberResponse) Reset() {
   513  	*x = ExtensionNumberResponse{}
   514  	if protoimpl.UnsafeEnabled {
   515  		mi := &file_grpc_reflection_v1alpha_reflection_proto_msgTypes[4]
   516  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   517  		ms.StoreMessageInfo(mi)
   518  	}
   519  }
   520  
   521  func (x *ExtensionNumberResponse) String() string {
   522  	return protoimpl.X.MessageStringOf(x)
   523  }
   524  
   525  func (*ExtensionNumberResponse) ProtoMessage() {}
   526  
   527  func (x *ExtensionNumberResponse) ProtoReflect() protoreflect.Message {
   528  	mi := &file_grpc_reflection_v1alpha_reflection_proto_msgTypes[4]
   529  	if protoimpl.UnsafeEnabled && x != nil {
   530  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   531  		if ms.LoadMessageInfo() == nil {
   532  			ms.StoreMessageInfo(mi)
   533  		}
   534  		return ms
   535  	}
   536  	return mi.MessageOf(x)
   537  }
   538  
   539  // Deprecated: Use ExtensionNumberResponse.ProtoReflect.Descriptor instead.
   540  func (*ExtensionNumberResponse) Descriptor() ([]byte, []int) {
   541  	return file_grpc_reflection_v1alpha_reflection_proto_rawDescGZIP(), []int{4}
   542  }
   543  
   544  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   545  func (x *ExtensionNumberResponse) GetBaseTypeName() string {
   546  	if x != nil {
   547  		return x.BaseTypeName
   548  	}
   549  	return ""
   550  }
   551  
   552  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   553  func (x *ExtensionNumberResponse) GetExtensionNumber() []int32 {
   554  	if x != nil {
   555  		return x.ExtensionNumber
   556  	}
   557  	return nil
   558  }
   559  
   560  // A list of ServiceResponse sent by the server answering list_services request.
   561  //
   562  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   563  type ListServiceResponse struct {
   564  	state         protoimpl.MessageState
   565  	sizeCache     protoimpl.SizeCache
   566  	unknownFields protoimpl.UnknownFields
   567  
   568  	// The information of each service may be expanded in the future, so we use
   569  	// ServiceResponse message to encapsulate it.
   570  	//
   571  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   572  	Service []*ServiceResponse `protobuf:"bytes,1,rep,name=service,proto3" json:"service,omitempty"`
   573  }
   574  
   575  func (x *ListServiceResponse) Reset() {
   576  	*x = ListServiceResponse{}
   577  	if protoimpl.UnsafeEnabled {
   578  		mi := &file_grpc_reflection_v1alpha_reflection_proto_msgTypes[5]
   579  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   580  		ms.StoreMessageInfo(mi)
   581  	}
   582  }
   583  
   584  func (x *ListServiceResponse) String() string {
   585  	return protoimpl.X.MessageStringOf(x)
   586  }
   587  
   588  func (*ListServiceResponse) ProtoMessage() {}
   589  
   590  func (x *ListServiceResponse) ProtoReflect() protoreflect.Message {
   591  	mi := &file_grpc_reflection_v1alpha_reflection_proto_msgTypes[5]
   592  	if protoimpl.UnsafeEnabled && x != nil {
   593  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   594  		if ms.LoadMessageInfo() == nil {
   595  			ms.StoreMessageInfo(mi)
   596  		}
   597  		return ms
   598  	}
   599  	return mi.MessageOf(x)
   600  }
   601  
   602  // Deprecated: Use ListServiceResponse.ProtoReflect.Descriptor instead.
   603  func (*ListServiceResponse) Descriptor() ([]byte, []int) {
   604  	return file_grpc_reflection_v1alpha_reflection_proto_rawDescGZIP(), []int{5}
   605  }
   606  
   607  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   608  func (x *ListServiceResponse) GetService() []*ServiceResponse {
   609  	if x != nil {
   610  		return x.Service
   611  	}
   612  	return nil
   613  }
   614  
   615  // The information of a single service used by ListServiceResponse to answer
   616  // list_services request.
   617  //
   618  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   619  type ServiceResponse struct {
   620  	state         protoimpl.MessageState
   621  	sizeCache     protoimpl.SizeCache
   622  	unknownFields protoimpl.UnknownFields
   623  
   624  	// Full name of a registered service, including its package name. The format
   625  	// is <package>.<service>
   626  	//
   627  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   628  	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
   629  }
   630  
   631  func (x *ServiceResponse) Reset() {
   632  	*x = ServiceResponse{}
   633  	if protoimpl.UnsafeEnabled {
   634  		mi := &file_grpc_reflection_v1alpha_reflection_proto_msgTypes[6]
   635  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   636  		ms.StoreMessageInfo(mi)
   637  	}
   638  }
   639  
   640  func (x *ServiceResponse) String() string {
   641  	return protoimpl.X.MessageStringOf(x)
   642  }
   643  
   644  func (*ServiceResponse) ProtoMessage() {}
   645  
   646  func (x *ServiceResponse) ProtoReflect() protoreflect.Message {
   647  	mi := &file_grpc_reflection_v1alpha_reflection_proto_msgTypes[6]
   648  	if protoimpl.UnsafeEnabled && x != nil {
   649  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   650  		if ms.LoadMessageInfo() == nil {
   651  			ms.StoreMessageInfo(mi)
   652  		}
   653  		return ms
   654  	}
   655  	return mi.MessageOf(x)
   656  }
   657  
   658  // Deprecated: Use ServiceResponse.ProtoReflect.Descriptor instead.
   659  func (*ServiceResponse) Descriptor() ([]byte, []int) {
   660  	return file_grpc_reflection_v1alpha_reflection_proto_rawDescGZIP(), []int{6}
   661  }
   662  
   663  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   664  func (x *ServiceResponse) GetName() string {
   665  	if x != nil {
   666  		return x.Name
   667  	}
   668  	return ""
   669  }
   670  
   671  // The error code and error message sent by the server when an error occurs.
   672  //
   673  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   674  type ErrorResponse struct {
   675  	state         protoimpl.MessageState
   676  	sizeCache     protoimpl.SizeCache
   677  	unknownFields protoimpl.UnknownFields
   678  
   679  	// This field uses the error codes defined in grpc::StatusCode.
   680  	//
   681  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   682  	ErrorCode int32 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
   683  	// Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   684  	ErrorMessage string `protobuf:"bytes,2,opt,name=error_message,json=errorMessage,proto3" json:"error_message,omitempty"`
   685  }
   686  
   687  func (x *ErrorResponse) Reset() {
   688  	*x = ErrorResponse{}
   689  	if protoimpl.UnsafeEnabled {
   690  		mi := &file_grpc_reflection_v1alpha_reflection_proto_msgTypes[7]
   691  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   692  		ms.StoreMessageInfo(mi)
   693  	}
   694  }
   695  
   696  func (x *ErrorResponse) String() string {
   697  	return protoimpl.X.MessageStringOf(x)
   698  }
   699  
   700  func (*ErrorResponse) ProtoMessage() {}
   701  
   702  func (x *ErrorResponse) ProtoReflect() protoreflect.Message {
   703  	mi := &file_grpc_reflection_v1alpha_reflection_proto_msgTypes[7]
   704  	if protoimpl.UnsafeEnabled && x != nil {
   705  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   706  		if ms.LoadMessageInfo() == nil {
   707  			ms.StoreMessageInfo(mi)
   708  		}
   709  		return ms
   710  	}
   711  	return mi.MessageOf(x)
   712  }
   713  
   714  // Deprecated: Use ErrorResponse.ProtoReflect.Descriptor instead.
   715  func (*ErrorResponse) Descriptor() ([]byte, []int) {
   716  	return file_grpc_reflection_v1alpha_reflection_proto_rawDescGZIP(), []int{7}
   717  }
   718  
   719  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   720  func (x *ErrorResponse) GetErrorCode() int32 {
   721  	if x != nil {
   722  		return x.ErrorCode
   723  	}
   724  	return 0
   725  }
   726  
   727  // Deprecated: The entire proto file grpc/reflection/v1alpha/reflection.proto is marked as deprecated.
   728  func (x *ErrorResponse) GetErrorMessage() string {
   729  	if x != nil {
   730  		return x.ErrorMessage
   731  	}
   732  	return ""
   733  }
   734  
   735  var File_grpc_reflection_v1alpha_reflection_proto protoreflect.FileDescriptor
   736  
   737  var file_grpc_reflection_v1alpha_reflection_proto_rawDesc = []byte{
   738  	0x0a, 0x28, 0x67, 0x72, 0x70, 0x63, 0x2f, 0x72, 0x65, 0x66, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
   739  	0x6e, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2f, 0x72, 0x65, 0x66, 0x6c, 0x65, 0x63,
   740  	0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x17, 0x67, 0x72, 0x70, 0x63,
   741  	0x2e, 0x72, 0x65, 0x66, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x76, 0x31, 0x61, 0x6c,
   742  	0x70, 0x68, 0x61, 0x22, 0xf8, 0x02, 0x0a, 0x17, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52, 0x65,
   743  	0x66, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
   744  	0x12, 0x0a, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x68,
   745  	0x6f, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x62, 0x79, 0x5f, 0x66,
   746  	0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52,
   747  	0x0e, 0x66, 0x69, 0x6c, 0x65, 0x42, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x12,
   748  	0x36, 0x0a, 0x16, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x69,
   749  	0x6e, 0x67, 0x5f, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48,
   750  	0x00, 0x52, 0x14, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x69, 0x6e,
   751  	0x67, 0x53, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x12, 0x67, 0x0a, 0x19, 0x66, 0x69, 0x6c, 0x65, 0x5f,
   752  	0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
   753  	0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x67, 0x72, 0x70,
   754  	0x63, 0x2e, 0x72, 0x65, 0x66, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x76, 0x31, 0x61,
   755  	0x6c, 0x70, 0x68, 0x61, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65,
   756  	0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x17, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x6e,
   757  	0x74, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
   758  	0x12, 0x42, 0x0a, 0x1d, 0x61, 0x6c, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
   759  	0x6e, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x5f, 0x6f, 0x66, 0x5f, 0x74, 0x79, 0x70,
   760  	0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x19, 0x61, 0x6c, 0x6c, 0x45, 0x78,
   761  	0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x4f, 0x66,
   762  	0x54, 0x79, 0x70, 0x65, 0x12, 0x25, 0x0a, 0x0d, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x73, 0x65, 0x72,
   763  	0x76, 0x69, 0x63, 0x65, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0c, 0x6c,
   764  	0x69, 0x73, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x11, 0x0a, 0x0f, 0x6d,
   765  	0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x66,
   766  	0x0a, 0x10, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
   767  	0x73, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67,
   768  	0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x63, 0x6f, 0x6e,
   769  	0x74, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x65,
   770  	0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18,
   771  	0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
   772  	0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0xc7, 0x04, 0x0a, 0x18, 0x53, 0x65, 0x72, 0x76, 0x65,
   773  	0x72, 0x52, 0x65, 0x66, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f,
   774  	0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, 0x68, 0x6f, 0x73,
   775  	0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x48, 0x6f,
   776  	0x73, 0x74, 0x12, 0x5b, 0x0a, 0x10, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x72,
   777  	0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x67,
   778  	0x72, 0x70, 0x63, 0x2e, 0x72, 0x65, 0x66, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x76,
   779  	0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52, 0x65, 0x66,
   780  	0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x0f,
   781  	0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
   782  	0x6b, 0x0a, 0x18, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
   783  	0x6f, 0x72, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
   784  	0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x72, 0x65, 0x66, 0x6c, 0x65, 0x63, 0x74,
   785  	0x69, 0x6f, 0x6e, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x46, 0x69, 0x6c, 0x65,
   786  	0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
   787  	0x73, 0x65, 0x48, 0x00, 0x52, 0x16, 0x66, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69,
   788  	0x70, 0x74, 0x6f, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x77, 0x0a, 0x1e,
   789  	0x61, 0x6c, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x75,
   790  	0x6d, 0x62, 0x65, 0x72, 0x73, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x18, 0x05,
   791  	0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x72, 0x65, 0x66, 0x6c,
   792  	0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x45,
   793  	0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65,
   794  	0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x00, 0x52, 0x1b, 0x61, 0x6c, 0x6c, 0x45, 0x78, 0x74,
   795  	0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73,
   796  	0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x64, 0x0a, 0x16, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x73, 0x65,
   797  	0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x18,
   798  	0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x72, 0x65, 0x66,
   799  	0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e,
   800  	0x4c, 0x69, 0x73, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
   801  	0x6e, 0x73, 0x65, 0x48, 0x00, 0x52, 0x14, 0x6c, 0x69, 0x73, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69,
   802  	0x63, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4f, 0x0a, 0x0e, 0x65,
   803  	0x72, 0x72, 0x6f, 0x72, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x18, 0x07, 0x20,
   804  	0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x72, 0x65, 0x66, 0x6c, 0x65,
   805  	0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x45, 0x72,
   806  	0x72, 0x6f, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x00, 0x52, 0x0d, 0x65,
   807  	0x72, 0x72, 0x6f, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x12, 0x0a, 0x10,
   808  	0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
   809  	0x22, 0x4c, 0x0a, 0x16, 0x46, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
   810  	0x6f, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x32, 0x0a, 0x15, 0x66, 0x69,
   811  	0x6c, 0x65, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x70, 0x72,
   812  	0x6f, 0x74, 0x6f, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x13, 0x66, 0x69, 0x6c, 0x65, 0x44,
   813  	0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x6a,
   814  	0x0a, 0x17, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65,
   815  	0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x24, 0x0a, 0x0e, 0x62, 0x61, 0x73,
   816  	0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
   817  	0x09, 0x52, 0x0c, 0x62, 0x61, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12,
   818  	0x29, 0x0a, 0x10, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x75, 0x6d,
   819  	0x62, 0x65, 0x72, 0x18, 0x02, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0f, 0x65, 0x78, 0x74, 0x65, 0x6e,
   820  	0x73, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0x59, 0x0a, 0x13, 0x4c, 0x69,
   821  	0x73, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
   822  	0x65, 0x12, 0x42, 0x0a, 0x07, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x18, 0x01, 0x20, 0x03,
   823  	0x28, 0x0b, 0x32, 0x28, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x72, 0x65, 0x66, 0x6c, 0x65, 0x63,
   824  	0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x65, 0x72,
   825  	0x76, 0x69, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x07, 0x73, 0x65,
   826  	0x72, 0x76, 0x69, 0x63, 0x65, 0x22, 0x25, 0x0a, 0x0f, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
   827  	0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65,
   828  	0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x53, 0x0a, 0x0d,
   829  	0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a,
   830  	0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
   831  	0x05, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x23, 0x0a, 0x0d,
   832  	0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20,
   833  	0x01, 0x28, 0x09, 0x52, 0x0c, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
   834  	0x65, 0x32, 0x93, 0x01, 0x0a, 0x10, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52, 0x65, 0x66, 0x6c,
   835  	0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7f, 0x0a, 0x14, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72,
   836  	0x52, 0x65, 0x66, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x30,
   837  	0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x72, 0x65, 0x66, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
   838  	0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52,
   839  	0x65, 0x66, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
   840  	0x1a, 0x31, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x72, 0x65, 0x66, 0x6c, 0x65, 0x63, 0x74, 0x69,
   841  	0x6f, 0x6e, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65,
   842  	0x72, 0x52, 0x65, 0x66, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f,
   843  	0x6e, 0x73, 0x65, 0x28, 0x01, 0x30, 0x01, 0x42, 0x73, 0x0a, 0x1a, 0x69, 0x6f, 0x2e, 0x67, 0x72,
   844  	0x70, 0x63, 0x2e, 0x72, 0x65, 0x66, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x76, 0x31,
   845  	0x61, 0x6c, 0x70, 0x68, 0x61, 0x42, 0x15, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52, 0x65, 0x66,
   846  	0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x39,
   847  	0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
   848  	0x67, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x2f, 0x72, 0x65, 0x66, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
   849  	0x6e, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x5f, 0x72, 0x65, 0x66, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
   850  	0x6e, 0x5f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0xb8, 0x01, 0x01, 0x62, 0x06, 0x70, 0x72,
   851  	0x6f, 0x74, 0x6f, 0x33,
   852  }
   853  
   854  var (
   855  	file_grpc_reflection_v1alpha_reflection_proto_rawDescOnce sync.Once
   856  	file_grpc_reflection_v1alpha_reflection_proto_rawDescData = file_grpc_reflection_v1alpha_reflection_proto_rawDesc
   857  )
   858  
   859  func file_grpc_reflection_v1alpha_reflection_proto_rawDescGZIP() []byte {
   860  	file_grpc_reflection_v1alpha_reflection_proto_rawDescOnce.Do(func() {
   861  		file_grpc_reflection_v1alpha_reflection_proto_rawDescData = protoimpl.X.CompressGZIP(file_grpc_reflection_v1alpha_reflection_proto_rawDescData)
   862  	})
   863  	return file_grpc_reflection_v1alpha_reflection_proto_rawDescData
   864  }
   865  
   866  var file_grpc_reflection_v1alpha_reflection_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
   867  var file_grpc_reflection_v1alpha_reflection_proto_goTypes = []interface{}{
   868  	(*ServerReflectionRequest)(nil),  // 0: grpc.reflection.v1alpha.ServerReflectionRequest
   869  	(*ExtensionRequest)(nil),         // 1: grpc.reflection.v1alpha.ExtensionRequest
   870  	(*ServerReflectionResponse)(nil), // 2: grpc.reflection.v1alpha.ServerReflectionResponse
   871  	(*FileDescriptorResponse)(nil),   // 3: grpc.reflection.v1alpha.FileDescriptorResponse
   872  	(*ExtensionNumberResponse)(nil),  // 4: grpc.reflection.v1alpha.ExtensionNumberResponse
   873  	(*ListServiceResponse)(nil),      // 5: grpc.reflection.v1alpha.ListServiceResponse
   874  	(*ServiceResponse)(nil),          // 6: grpc.reflection.v1alpha.ServiceResponse
   875  	(*ErrorResponse)(nil),            // 7: grpc.reflection.v1alpha.ErrorResponse
   876  }
   877  var file_grpc_reflection_v1alpha_reflection_proto_depIdxs = []int32{
   878  	1, // 0: grpc.reflection.v1alpha.ServerReflectionRequest.file_containing_extension:type_name -> grpc.reflection.v1alpha.ExtensionRequest
   879  	0, // 1: grpc.reflection.v1alpha.ServerReflectionResponse.original_request:type_name -> grpc.reflection.v1alpha.ServerReflectionRequest
   880  	3, // 2: grpc.reflection.v1alpha.ServerReflectionResponse.file_descriptor_response:type_name -> grpc.reflection.v1alpha.FileDescriptorResponse
   881  	4, // 3: grpc.reflection.v1alpha.ServerReflectionResponse.all_extension_numbers_response:type_name -> grpc.reflection.v1alpha.ExtensionNumberResponse
   882  	5, // 4: grpc.reflection.v1alpha.ServerReflectionResponse.list_services_response:type_name -> grpc.reflection.v1alpha.ListServiceResponse
   883  	7, // 5: grpc.reflection.v1alpha.ServerReflectionResponse.error_response:type_name -> grpc.reflection.v1alpha.ErrorResponse
   884  	6, // 6: grpc.reflection.v1alpha.ListServiceResponse.service:type_name -> grpc.reflection.v1alpha.ServiceResponse
   885  	0, // 7: grpc.reflection.v1alpha.ServerReflection.ServerReflectionInfo:input_type -> grpc.reflection.v1alpha.ServerReflectionRequest
   886  	2, // 8: grpc.reflection.v1alpha.ServerReflection.ServerReflectionInfo:output_type -> grpc.reflection.v1alpha.ServerReflectionResponse
   887  	8, // [8:9] is the sub-list for method output_type
   888  	7, // [7:8] is the sub-list for method input_type
   889  	7, // [7:7] is the sub-list for extension type_name
   890  	7, // [7:7] is the sub-list for extension extendee
   891  	0, // [0:7] is the sub-list for field type_name
   892  }
   893  
   894  func init() { file_grpc_reflection_v1alpha_reflection_proto_init() }
   895  func file_grpc_reflection_v1alpha_reflection_proto_init() {
   896  	if File_grpc_reflection_v1alpha_reflection_proto != nil {
   897  		return
   898  	}
   899  	if !protoimpl.UnsafeEnabled {
   900  		file_grpc_reflection_v1alpha_reflection_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
   901  			switch v := v.(*ServerReflectionRequest); i {
   902  			case 0:
   903  				return &v.state
   904  			case 1:
   905  				return &v.sizeCache
   906  			case 2:
   907  				return &v.unknownFields
   908  			default:
   909  				return nil
   910  			}
   911  		}
   912  		file_grpc_reflection_v1alpha_reflection_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
   913  			switch v := v.(*ExtensionRequest); i {
   914  			case 0:
   915  				return &v.state
   916  			case 1:
   917  				return &v.sizeCache
   918  			case 2:
   919  				return &v.unknownFields
   920  			default:
   921  				return nil
   922  			}
   923  		}
   924  		file_grpc_reflection_v1alpha_reflection_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
   925  			switch v := v.(*ServerReflectionResponse); i {
   926  			case 0:
   927  				return &v.state
   928  			case 1:
   929  				return &v.sizeCache
   930  			case 2:
   931  				return &v.unknownFields
   932  			default:
   933  				return nil
   934  			}
   935  		}
   936  		file_grpc_reflection_v1alpha_reflection_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
   937  			switch v := v.(*FileDescriptorResponse); i {
   938  			case 0:
   939  				return &v.state
   940  			case 1:
   941  				return &v.sizeCache
   942  			case 2:
   943  				return &v.unknownFields
   944  			default:
   945  				return nil
   946  			}
   947  		}
   948  		file_grpc_reflection_v1alpha_reflection_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
   949  			switch v := v.(*ExtensionNumberResponse); i {
   950  			case 0:
   951  				return &v.state
   952  			case 1:
   953  				return &v.sizeCache
   954  			case 2:
   955  				return &v.unknownFields
   956  			default:
   957  				return nil
   958  			}
   959  		}
   960  		file_grpc_reflection_v1alpha_reflection_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
   961  			switch v := v.(*ListServiceResponse); i {
   962  			case 0:
   963  				return &v.state
   964  			case 1:
   965  				return &v.sizeCache
   966  			case 2:
   967  				return &v.unknownFields
   968  			default:
   969  				return nil
   970  			}
   971  		}
   972  		file_grpc_reflection_v1alpha_reflection_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
   973  			switch v := v.(*ServiceResponse); i {
   974  			case 0:
   975  				return &v.state
   976  			case 1:
   977  				return &v.sizeCache
   978  			case 2:
   979  				return &v.unknownFields
   980  			default:
   981  				return nil
   982  			}
   983  		}
   984  		file_grpc_reflection_v1alpha_reflection_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
   985  			switch v := v.(*ErrorResponse); i {
   986  			case 0:
   987  				return &v.state
   988  			case 1:
   989  				return &v.sizeCache
   990  			case 2:
   991  				return &v.unknownFields
   992  			default:
   993  				return nil
   994  			}
   995  		}
   996  	}
   997  	file_grpc_reflection_v1alpha_reflection_proto_msgTypes[0].OneofWrappers = []interface{}{
   998  		(*ServerReflectionRequest_FileByFilename)(nil),
   999  		(*ServerReflectionRequest_FileContainingSymbol)(nil),
  1000  		(*ServerReflectionRequest_FileContainingExtension)(nil),
  1001  		(*ServerReflectionRequest_AllExtensionNumbersOfType)(nil),
  1002  		(*ServerReflectionRequest_ListServices)(nil),
  1003  	}
  1004  	file_grpc_reflection_v1alpha_reflection_proto_msgTypes[2].OneofWrappers = []interface{}{
  1005  		(*ServerReflectionResponse_FileDescriptorResponse)(nil),
  1006  		(*ServerReflectionResponse_AllExtensionNumbersResponse)(nil),
  1007  		(*ServerReflectionResponse_ListServicesResponse)(nil),
  1008  		(*ServerReflectionResponse_ErrorResponse)(nil),
  1009  	}
  1010  	type x struct{}
  1011  	out := protoimpl.TypeBuilder{
  1012  		File: protoimpl.DescBuilder{
  1013  			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1014  			RawDescriptor: file_grpc_reflection_v1alpha_reflection_proto_rawDesc,
  1015  			NumEnums:      0,
  1016  			NumMessages:   8,
  1017  			NumExtensions: 0,
  1018  			NumServices:   1,
  1019  		},
  1020  		GoTypes:           file_grpc_reflection_v1alpha_reflection_proto_goTypes,
  1021  		DependencyIndexes: file_grpc_reflection_v1alpha_reflection_proto_depIdxs,
  1022  		MessageInfos:      file_grpc_reflection_v1alpha_reflection_proto_msgTypes,
  1023  	}.Build()
  1024  	File_grpc_reflection_v1alpha_reflection_proto = out.File
  1025  	file_grpc_reflection_v1alpha_reflection_proto_rawDesc = nil
  1026  	file_grpc_reflection_v1alpha_reflection_proto_goTypes = nil
  1027  	file_grpc_reflection_v1alpha_reflection_proto_depIdxs = nil
  1028  }
  1029  

View as plain text