mirror of
				https://github.com/VaalaCat/frp-panel.git
				synced 2025-10-31 02:36:44 +08:00 
			
		
		
		
	 373276633f
			
		
	
	373276633f
	
	
	
		
			
			refactor: change client manager structure [重构:更改客户端管理器结构适配影子客户端] feat: add proxy config table and dao [添加代理配置独立数据表和DAO层] feat: new proxy config entity [新建的代理配置实体] feat: update and delete proxy config [更新和删除代理配置接口] feat: get config api and beautify proxy item [更新获取配置API并美化代理项] feat: change proxy form style [美化修改代理的表单样式] fix: client edit [修复:编辑客户端的问题] fix: shadow copy status error [修复:影子客户端复制状态错误] fix: http proxy bug [修复:HTTP代理类型的错误] fix: cannot update client [修复:无法更新客户端] feat: record trigger refetch [自动重新获取表格内的数据] fix: filter string length [修复:过滤字符串长度] fix: add client error [修复:添加客户端错误] fix: do not notify client when stopped [修复:停止时不通知客户端] fix: delete when proxy duplicate [修复:代理重复时删除] feat: add http proxy location [添加HTTP代理路由路径] chore: edit style [编辑样式美化] fix: remove expired client [修复:自动移除过期客户端] feat: proxy status [新增代理状态提示] fix: build [修复:构建] fix: refetch trigger [修复:重新获取数据的问题] fix: remove all expired client [修复:移除所有过期客户端] feat: i18n for proxy [代理页面的国际化翻译]
		
			
				
	
	
		
			1872 lines
		
	
	
		
			68 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			1872 lines
		
	
	
		
			68 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Code generated by protoc-gen-go. DO NOT EDIT.
 | |
| // versions:
 | |
| // 	protoc-gen-go v1.35.2
 | |
| // 	protoc        v4.25.1
 | |
| // source: api_client.proto
 | |
| 
 | |
| package pb
 | |
| 
 | |
| import (
 | |
| 	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
 | |
| 	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
 | |
| 	reflect "reflect"
 | |
| 	sync "sync"
 | |
| )
 | |
| 
 | |
| const (
 | |
| 	// Verify that this generated code is sufficiently up-to-date.
 | |
| 	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
 | |
| 	// Verify that runtime/protoimpl is sufficiently up-to-date.
 | |
| 	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
 | |
| )
 | |
| 
 | |
| type InitClientRequest struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	ClientId *string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3,oneof" json:"client_id,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *InitClientRequest) Reset() {
 | |
| 	*x = InitClientRequest{}
 | |
| 	mi := &file_api_client_proto_msgTypes[0]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *InitClientRequest) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*InitClientRequest) ProtoMessage() {}
 | |
| 
 | |
| func (x *InitClientRequest) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[0]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use InitClientRequest.ProtoReflect.Descriptor instead.
 | |
| func (*InitClientRequest) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{0}
 | |
| }
 | |
| 
 | |
| func (x *InitClientRequest) GetClientId() string {
 | |
| 	if x != nil && x.ClientId != nil {
 | |
| 		return *x.ClientId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| type InitClientResponse struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Status   *Status `protobuf:"bytes,1,opt,name=status,proto3,oneof" json:"status,omitempty"`
 | |
| 	ClientId *string `protobuf:"bytes,2,opt,name=client_id,json=clientId,proto3,oneof" json:"client_id,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *InitClientResponse) Reset() {
 | |
| 	*x = InitClientResponse{}
 | |
| 	mi := &file_api_client_proto_msgTypes[1]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *InitClientResponse) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*InitClientResponse) ProtoMessage() {}
 | |
| 
 | |
| func (x *InitClientResponse) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[1]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use InitClientResponse.ProtoReflect.Descriptor instead.
 | |
| func (*InitClientResponse) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{1}
 | |
| }
 | |
| 
 | |
| func (x *InitClientResponse) GetStatus() *Status {
 | |
| 	if x != nil {
 | |
| 		return x.Status
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (x *InitClientResponse) GetClientId() string {
 | |
| 	if x != nil && x.ClientId != nil {
 | |
| 		return *x.ClientId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| type ListClientsRequest struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Page     *int32  `protobuf:"varint,1,opt,name=page,proto3,oneof" json:"page,omitempty"`
 | |
| 	PageSize *int32  `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3,oneof" json:"page_size,omitempty"`
 | |
| 	Keyword  *string `protobuf:"bytes,3,opt,name=keyword,proto3,oneof" json:"keyword,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *ListClientsRequest) Reset() {
 | |
| 	*x = ListClientsRequest{}
 | |
| 	mi := &file_api_client_proto_msgTypes[2]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *ListClientsRequest) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*ListClientsRequest) ProtoMessage() {}
 | |
| 
 | |
| func (x *ListClientsRequest) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[2]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use ListClientsRequest.ProtoReflect.Descriptor instead.
 | |
| func (*ListClientsRequest) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{2}
 | |
| }
 | |
| 
 | |
| func (x *ListClientsRequest) GetPage() int32 {
 | |
| 	if x != nil && x.Page != nil {
 | |
| 		return *x.Page
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (x *ListClientsRequest) GetPageSize() int32 {
 | |
| 	if x != nil && x.PageSize != nil {
 | |
| 		return *x.PageSize
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (x *ListClientsRequest) GetKeyword() string {
 | |
| 	if x != nil && x.Keyword != nil {
 | |
| 		return *x.Keyword
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| type ListClientsResponse struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Status  *Status   `protobuf:"bytes,1,opt,name=status,proto3,oneof" json:"status,omitempty"`
 | |
| 	Total   *int32    `protobuf:"varint,2,opt,name=total,proto3,oneof" json:"total,omitempty"`
 | |
| 	Clients []*Client `protobuf:"bytes,3,rep,name=clients,proto3" json:"clients,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *ListClientsResponse) Reset() {
 | |
| 	*x = ListClientsResponse{}
 | |
| 	mi := &file_api_client_proto_msgTypes[3]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *ListClientsResponse) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*ListClientsResponse) ProtoMessage() {}
 | |
| 
 | |
| func (x *ListClientsResponse) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[3]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use ListClientsResponse.ProtoReflect.Descriptor instead.
 | |
| func (*ListClientsResponse) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{3}
 | |
| }
 | |
| 
 | |
| func (x *ListClientsResponse) GetStatus() *Status {
 | |
| 	if x != nil {
 | |
| 		return x.Status
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (x *ListClientsResponse) GetTotal() int32 {
 | |
| 	if x != nil && x.Total != nil {
 | |
| 		return *x.Total
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (x *ListClientsResponse) GetClients() []*Client {
 | |
| 	if x != nil {
 | |
| 		return x.Clients
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type GetClientRequest struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	ClientId *string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3,oneof" json:"client_id,omitempty"`
 | |
| 	ServerId *string `protobuf:"bytes,2,opt,name=server_id,json=serverId,proto3,oneof" json:"server_id,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *GetClientRequest) Reset() {
 | |
| 	*x = GetClientRequest{}
 | |
| 	mi := &file_api_client_proto_msgTypes[4]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *GetClientRequest) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*GetClientRequest) ProtoMessage() {}
 | |
| 
 | |
| func (x *GetClientRequest) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[4]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use GetClientRequest.ProtoReflect.Descriptor instead.
 | |
| func (*GetClientRequest) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{4}
 | |
| }
 | |
| 
 | |
| func (x *GetClientRequest) GetClientId() string {
 | |
| 	if x != nil && x.ClientId != nil {
 | |
| 		return *x.ClientId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (x *GetClientRequest) GetServerId() string {
 | |
| 	if x != nil && x.ServerId != nil {
 | |
| 		return *x.ServerId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| type GetClientResponse struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Status *Status `protobuf:"bytes,1,opt,name=status,proto3,oneof" json:"status,omitempty"`
 | |
| 	Client *Client `protobuf:"bytes,2,opt,name=client,proto3,oneof" json:"client,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *GetClientResponse) Reset() {
 | |
| 	*x = GetClientResponse{}
 | |
| 	mi := &file_api_client_proto_msgTypes[5]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *GetClientResponse) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*GetClientResponse) ProtoMessage() {}
 | |
| 
 | |
| func (x *GetClientResponse) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[5]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use GetClientResponse.ProtoReflect.Descriptor instead.
 | |
| func (*GetClientResponse) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{5}
 | |
| }
 | |
| 
 | |
| func (x *GetClientResponse) GetStatus() *Status {
 | |
| 	if x != nil {
 | |
| 		return x.Status
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (x *GetClientResponse) GetClient() *Client {
 | |
| 	if x != nil {
 | |
| 		return x.Client
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type DeleteClientRequest struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	ClientId *string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3,oneof" json:"client_id,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *DeleteClientRequest) Reset() {
 | |
| 	*x = DeleteClientRequest{}
 | |
| 	mi := &file_api_client_proto_msgTypes[6]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *DeleteClientRequest) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*DeleteClientRequest) ProtoMessage() {}
 | |
| 
 | |
| func (x *DeleteClientRequest) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[6]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use DeleteClientRequest.ProtoReflect.Descriptor instead.
 | |
| func (*DeleteClientRequest) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{6}
 | |
| }
 | |
| 
 | |
| func (x *DeleteClientRequest) GetClientId() string {
 | |
| 	if x != nil && x.ClientId != nil {
 | |
| 		return *x.ClientId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| type DeleteClientResponse struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Status *Status `protobuf:"bytes,1,opt,name=status,proto3,oneof" json:"status,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *DeleteClientResponse) Reset() {
 | |
| 	*x = DeleteClientResponse{}
 | |
| 	mi := &file_api_client_proto_msgTypes[7]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *DeleteClientResponse) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*DeleteClientResponse) ProtoMessage() {}
 | |
| 
 | |
| func (x *DeleteClientResponse) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[7]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use DeleteClientResponse.ProtoReflect.Descriptor instead.
 | |
| func (*DeleteClientResponse) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{7}
 | |
| }
 | |
| 
 | |
| func (x *DeleteClientResponse) GetStatus() *Status {
 | |
| 	if x != nil {
 | |
| 		return x.Status
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type UpdateFRPCRequest struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	ClientId *string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3,oneof" json:"client_id,omitempty"`
 | |
| 	ServerId *string `protobuf:"bytes,2,opt,name=server_id,json=serverId,proto3,oneof" json:"server_id,omitempty"`
 | |
| 	Config   []byte  `protobuf:"bytes,3,opt,name=config,proto3,oneof" json:"config,omitempty"`
 | |
| 	Comment  *string `protobuf:"bytes,4,opt,name=comment,proto3,oneof" json:"comment,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *UpdateFRPCRequest) Reset() {
 | |
| 	*x = UpdateFRPCRequest{}
 | |
| 	mi := &file_api_client_proto_msgTypes[8]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *UpdateFRPCRequest) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*UpdateFRPCRequest) ProtoMessage() {}
 | |
| 
 | |
| func (x *UpdateFRPCRequest) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[8]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use UpdateFRPCRequest.ProtoReflect.Descriptor instead.
 | |
| func (*UpdateFRPCRequest) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{8}
 | |
| }
 | |
| 
 | |
| func (x *UpdateFRPCRequest) GetClientId() string {
 | |
| 	if x != nil && x.ClientId != nil {
 | |
| 		return *x.ClientId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (x *UpdateFRPCRequest) GetServerId() string {
 | |
| 	if x != nil && x.ServerId != nil {
 | |
| 		return *x.ServerId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (x *UpdateFRPCRequest) GetConfig() []byte {
 | |
| 	if x != nil {
 | |
| 		return x.Config
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (x *UpdateFRPCRequest) GetComment() string {
 | |
| 	if x != nil && x.Comment != nil {
 | |
| 		return *x.Comment
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| type UpdateFRPCResponse struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Status *Status `protobuf:"bytes,1,opt,name=status,proto3,oneof" json:"status,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *UpdateFRPCResponse) Reset() {
 | |
| 	*x = UpdateFRPCResponse{}
 | |
| 	mi := &file_api_client_proto_msgTypes[9]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *UpdateFRPCResponse) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*UpdateFRPCResponse) ProtoMessage() {}
 | |
| 
 | |
| func (x *UpdateFRPCResponse) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[9]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use UpdateFRPCResponse.ProtoReflect.Descriptor instead.
 | |
| func (*UpdateFRPCResponse) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{9}
 | |
| }
 | |
| 
 | |
| func (x *UpdateFRPCResponse) GetStatus() *Status {
 | |
| 	if x != nil {
 | |
| 		return x.Status
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type RemoveFRPCRequest struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	ClientId *string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3,oneof" json:"client_id,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *RemoveFRPCRequest) Reset() {
 | |
| 	*x = RemoveFRPCRequest{}
 | |
| 	mi := &file_api_client_proto_msgTypes[10]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *RemoveFRPCRequest) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*RemoveFRPCRequest) ProtoMessage() {}
 | |
| 
 | |
| func (x *RemoveFRPCRequest) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[10]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use RemoveFRPCRequest.ProtoReflect.Descriptor instead.
 | |
| func (*RemoveFRPCRequest) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{10}
 | |
| }
 | |
| 
 | |
| func (x *RemoveFRPCRequest) GetClientId() string {
 | |
| 	if x != nil && x.ClientId != nil {
 | |
| 		return *x.ClientId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| type RemoveFRPCResponse struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Status *Status `protobuf:"bytes,1,opt,name=status,proto3,oneof" json:"status,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *RemoveFRPCResponse) Reset() {
 | |
| 	*x = RemoveFRPCResponse{}
 | |
| 	mi := &file_api_client_proto_msgTypes[11]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *RemoveFRPCResponse) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*RemoveFRPCResponse) ProtoMessage() {}
 | |
| 
 | |
| func (x *RemoveFRPCResponse) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[11]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use RemoveFRPCResponse.ProtoReflect.Descriptor instead.
 | |
| func (*RemoveFRPCResponse) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{11}
 | |
| }
 | |
| 
 | |
| func (x *RemoveFRPCResponse) GetStatus() *Status {
 | |
| 	if x != nil {
 | |
| 		return x.Status
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type StopFRPCRequest struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	ClientId *string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3,oneof" json:"client_id,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *StopFRPCRequest) Reset() {
 | |
| 	*x = StopFRPCRequest{}
 | |
| 	mi := &file_api_client_proto_msgTypes[12]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *StopFRPCRequest) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*StopFRPCRequest) ProtoMessage() {}
 | |
| 
 | |
| func (x *StopFRPCRequest) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[12]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use StopFRPCRequest.ProtoReflect.Descriptor instead.
 | |
| func (*StopFRPCRequest) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{12}
 | |
| }
 | |
| 
 | |
| func (x *StopFRPCRequest) GetClientId() string {
 | |
| 	if x != nil && x.ClientId != nil {
 | |
| 		return *x.ClientId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| type StopFRPCResponse struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Status *Status `protobuf:"bytes,1,opt,name=status,proto3,oneof" json:"status,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *StopFRPCResponse) Reset() {
 | |
| 	*x = StopFRPCResponse{}
 | |
| 	mi := &file_api_client_proto_msgTypes[13]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *StopFRPCResponse) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*StopFRPCResponse) ProtoMessage() {}
 | |
| 
 | |
| func (x *StopFRPCResponse) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[13]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use StopFRPCResponse.ProtoReflect.Descriptor instead.
 | |
| func (*StopFRPCResponse) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{13}
 | |
| }
 | |
| 
 | |
| func (x *StopFRPCResponse) GetStatus() *Status {
 | |
| 	if x != nil {
 | |
| 		return x.Status
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type StartFRPCRequest struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	ClientId *string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3,oneof" json:"client_id,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *StartFRPCRequest) Reset() {
 | |
| 	*x = StartFRPCRequest{}
 | |
| 	mi := &file_api_client_proto_msgTypes[14]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *StartFRPCRequest) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*StartFRPCRequest) ProtoMessage() {}
 | |
| 
 | |
| func (x *StartFRPCRequest) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[14]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use StartFRPCRequest.ProtoReflect.Descriptor instead.
 | |
| func (*StartFRPCRequest) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{14}
 | |
| }
 | |
| 
 | |
| func (x *StartFRPCRequest) GetClientId() string {
 | |
| 	if x != nil && x.ClientId != nil {
 | |
| 		return *x.ClientId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| type StartFRPCResponse struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Status *Status `protobuf:"bytes,1,opt,name=status,proto3,oneof" json:"status,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *StartFRPCResponse) Reset() {
 | |
| 	*x = StartFRPCResponse{}
 | |
| 	mi := &file_api_client_proto_msgTypes[15]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *StartFRPCResponse) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*StartFRPCResponse) ProtoMessage() {}
 | |
| 
 | |
| func (x *StartFRPCResponse) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[15]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use StartFRPCResponse.ProtoReflect.Descriptor instead.
 | |
| func (*StartFRPCResponse) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{15}
 | |
| }
 | |
| 
 | |
| func (x *StartFRPCResponse) GetStatus() *Status {
 | |
| 	if x != nil {
 | |
| 		return x.Status
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type GetProxyStatsByClientIDRequest struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	ClientId *string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3,oneof" json:"client_id,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *GetProxyStatsByClientIDRequest) Reset() {
 | |
| 	*x = GetProxyStatsByClientIDRequest{}
 | |
| 	mi := &file_api_client_proto_msgTypes[16]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *GetProxyStatsByClientIDRequest) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*GetProxyStatsByClientIDRequest) ProtoMessage() {}
 | |
| 
 | |
| func (x *GetProxyStatsByClientIDRequest) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[16]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use GetProxyStatsByClientIDRequest.ProtoReflect.Descriptor instead.
 | |
| func (*GetProxyStatsByClientIDRequest) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{16}
 | |
| }
 | |
| 
 | |
| func (x *GetProxyStatsByClientIDRequest) GetClientId() string {
 | |
| 	if x != nil && x.ClientId != nil {
 | |
| 		return *x.ClientId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| type GetProxyStatsByClientIDResponse struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Status     *Status      `protobuf:"bytes,1,opt,name=status,proto3,oneof" json:"status,omitempty"`
 | |
| 	ProxyInfos []*ProxyInfo `protobuf:"bytes,2,rep,name=proxy_infos,json=proxyInfos,proto3" json:"proxy_infos,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *GetProxyStatsByClientIDResponse) Reset() {
 | |
| 	*x = GetProxyStatsByClientIDResponse{}
 | |
| 	mi := &file_api_client_proto_msgTypes[17]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *GetProxyStatsByClientIDResponse) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*GetProxyStatsByClientIDResponse) ProtoMessage() {}
 | |
| 
 | |
| func (x *GetProxyStatsByClientIDResponse) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[17]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use GetProxyStatsByClientIDResponse.ProtoReflect.Descriptor instead.
 | |
| func (*GetProxyStatsByClientIDResponse) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{17}
 | |
| }
 | |
| 
 | |
| func (x *GetProxyStatsByClientIDResponse) GetStatus() *Status {
 | |
| 	if x != nil {
 | |
| 		return x.Status
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (x *GetProxyStatsByClientIDResponse) GetProxyInfos() []*ProxyInfo {
 | |
| 	if x != nil {
 | |
| 		return x.ProxyInfos
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type ListProxyConfigsRequest struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Page     *int32  `protobuf:"varint,1,opt,name=page,proto3,oneof" json:"page,omitempty"`
 | |
| 	PageSize *int32  `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3,oneof" json:"page_size,omitempty"`
 | |
| 	Keyword  *string `protobuf:"bytes,3,opt,name=keyword,proto3,oneof" json:"keyword,omitempty"`
 | |
| 	ClientId *string `protobuf:"bytes,4,opt,name=client_id,json=clientId,proto3,oneof" json:"client_id,omitempty"`
 | |
| 	ServerId *string `protobuf:"bytes,5,opt,name=server_id,json=serverId,proto3,oneof" json:"server_id,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *ListProxyConfigsRequest) Reset() {
 | |
| 	*x = ListProxyConfigsRequest{}
 | |
| 	mi := &file_api_client_proto_msgTypes[18]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *ListProxyConfigsRequest) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*ListProxyConfigsRequest) ProtoMessage() {}
 | |
| 
 | |
| func (x *ListProxyConfigsRequest) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[18]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use ListProxyConfigsRequest.ProtoReflect.Descriptor instead.
 | |
| func (*ListProxyConfigsRequest) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{18}
 | |
| }
 | |
| 
 | |
| func (x *ListProxyConfigsRequest) GetPage() int32 {
 | |
| 	if x != nil && x.Page != nil {
 | |
| 		return *x.Page
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (x *ListProxyConfigsRequest) GetPageSize() int32 {
 | |
| 	if x != nil && x.PageSize != nil {
 | |
| 		return *x.PageSize
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (x *ListProxyConfigsRequest) GetKeyword() string {
 | |
| 	if x != nil && x.Keyword != nil {
 | |
| 		return *x.Keyword
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (x *ListProxyConfigsRequest) GetClientId() string {
 | |
| 	if x != nil && x.ClientId != nil {
 | |
| 		return *x.ClientId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (x *ListProxyConfigsRequest) GetServerId() string {
 | |
| 	if x != nil && x.ServerId != nil {
 | |
| 		return *x.ServerId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| type ListProxyConfigsResponse struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Status       *Status        `protobuf:"bytes,1,opt,name=status,proto3,oneof" json:"status,omitempty"`
 | |
| 	Total        *int32         `protobuf:"varint,2,opt,name=total,proto3,oneof" json:"total,omitempty"`
 | |
| 	ProxyConfigs []*ProxyConfig `protobuf:"bytes,3,rep,name=proxy_configs,json=proxyConfigs,proto3" json:"proxy_configs,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *ListProxyConfigsResponse) Reset() {
 | |
| 	*x = ListProxyConfigsResponse{}
 | |
| 	mi := &file_api_client_proto_msgTypes[19]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *ListProxyConfigsResponse) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*ListProxyConfigsResponse) ProtoMessage() {}
 | |
| 
 | |
| func (x *ListProxyConfigsResponse) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[19]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use ListProxyConfigsResponse.ProtoReflect.Descriptor instead.
 | |
| func (*ListProxyConfigsResponse) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{19}
 | |
| }
 | |
| 
 | |
| func (x *ListProxyConfigsResponse) GetStatus() *Status {
 | |
| 	if x != nil {
 | |
| 		return x.Status
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (x *ListProxyConfigsResponse) GetTotal() int32 {
 | |
| 	if x != nil && x.Total != nil {
 | |
| 		return *x.Total
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (x *ListProxyConfigsResponse) GetProxyConfigs() []*ProxyConfig {
 | |
| 	if x != nil {
 | |
| 		return x.ProxyConfigs
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type CreateProxyConfigRequest struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	ClientId  *string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3,oneof" json:"client_id,omitempty"`
 | |
| 	ServerId  *string `protobuf:"bytes,2,opt,name=server_id,json=serverId,proto3,oneof" json:"server_id,omitempty"`
 | |
| 	Config    []byte  `protobuf:"bytes,3,opt,name=config,proto3,oneof" json:"config,omitempty"`
 | |
| 	Overwrite *bool   `protobuf:"varint,4,opt,name=overwrite,proto3,oneof" json:"overwrite,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *CreateProxyConfigRequest) Reset() {
 | |
| 	*x = CreateProxyConfigRequest{}
 | |
| 	mi := &file_api_client_proto_msgTypes[20]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *CreateProxyConfigRequest) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*CreateProxyConfigRequest) ProtoMessage() {}
 | |
| 
 | |
| func (x *CreateProxyConfigRequest) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[20]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use CreateProxyConfigRequest.ProtoReflect.Descriptor instead.
 | |
| func (*CreateProxyConfigRequest) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{20}
 | |
| }
 | |
| 
 | |
| func (x *CreateProxyConfigRequest) GetClientId() string {
 | |
| 	if x != nil && x.ClientId != nil {
 | |
| 		return *x.ClientId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (x *CreateProxyConfigRequest) GetServerId() string {
 | |
| 	if x != nil && x.ServerId != nil {
 | |
| 		return *x.ServerId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (x *CreateProxyConfigRequest) GetConfig() []byte {
 | |
| 	if x != nil {
 | |
| 		return x.Config
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (x *CreateProxyConfigRequest) GetOverwrite() bool {
 | |
| 	if x != nil && x.Overwrite != nil {
 | |
| 		return *x.Overwrite
 | |
| 	}
 | |
| 	return false
 | |
| }
 | |
| 
 | |
| type CreateProxyConfigResponse struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Status *Status `protobuf:"bytes,1,opt,name=status,proto3,oneof" json:"status,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *CreateProxyConfigResponse) Reset() {
 | |
| 	*x = CreateProxyConfigResponse{}
 | |
| 	mi := &file_api_client_proto_msgTypes[21]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *CreateProxyConfigResponse) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*CreateProxyConfigResponse) ProtoMessage() {}
 | |
| 
 | |
| func (x *CreateProxyConfigResponse) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[21]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use CreateProxyConfigResponse.ProtoReflect.Descriptor instead.
 | |
| func (*CreateProxyConfigResponse) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{21}
 | |
| }
 | |
| 
 | |
| func (x *CreateProxyConfigResponse) GetStatus() *Status {
 | |
| 	if x != nil {
 | |
| 		return x.Status
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type DeleteProxyConfigRequest struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	ClientId *string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3,oneof" json:"client_id,omitempty"`
 | |
| 	ServerId *string `protobuf:"bytes,2,opt,name=server_id,json=serverId,proto3,oneof" json:"server_id,omitempty"`
 | |
| 	Name     *string `protobuf:"bytes,3,opt,name=name,proto3,oneof" json:"name,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *DeleteProxyConfigRequest) Reset() {
 | |
| 	*x = DeleteProxyConfigRequest{}
 | |
| 	mi := &file_api_client_proto_msgTypes[22]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *DeleteProxyConfigRequest) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*DeleteProxyConfigRequest) ProtoMessage() {}
 | |
| 
 | |
| func (x *DeleteProxyConfigRequest) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[22]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use DeleteProxyConfigRequest.ProtoReflect.Descriptor instead.
 | |
| func (*DeleteProxyConfigRequest) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{22}
 | |
| }
 | |
| 
 | |
| func (x *DeleteProxyConfigRequest) GetClientId() string {
 | |
| 	if x != nil && x.ClientId != nil {
 | |
| 		return *x.ClientId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (x *DeleteProxyConfigRequest) GetServerId() string {
 | |
| 	if x != nil && x.ServerId != nil {
 | |
| 		return *x.ServerId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (x *DeleteProxyConfigRequest) GetName() string {
 | |
| 	if x != nil && x.Name != nil {
 | |
| 		return *x.Name
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| type DeleteProxyConfigResponse struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Status *Status `protobuf:"bytes,1,opt,name=status,proto3,oneof" json:"status,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *DeleteProxyConfigResponse) Reset() {
 | |
| 	*x = DeleteProxyConfigResponse{}
 | |
| 	mi := &file_api_client_proto_msgTypes[23]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *DeleteProxyConfigResponse) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*DeleteProxyConfigResponse) ProtoMessage() {}
 | |
| 
 | |
| func (x *DeleteProxyConfigResponse) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[23]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use DeleteProxyConfigResponse.ProtoReflect.Descriptor instead.
 | |
| func (*DeleteProxyConfigResponse) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{23}
 | |
| }
 | |
| 
 | |
| func (x *DeleteProxyConfigResponse) GetStatus() *Status {
 | |
| 	if x != nil {
 | |
| 		return x.Status
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type UpdateProxyConfigRequest struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	ClientId *string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3,oneof" json:"client_id,omitempty"`
 | |
| 	ServerId *string `protobuf:"bytes,2,opt,name=server_id,json=serverId,proto3,oneof" json:"server_id,omitempty"`
 | |
| 	Name     *string `protobuf:"bytes,3,opt,name=name,proto3,oneof" json:"name,omitempty"`
 | |
| 	Config   []byte  `protobuf:"bytes,4,opt,name=config,proto3,oneof" json:"config,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *UpdateProxyConfigRequest) Reset() {
 | |
| 	*x = UpdateProxyConfigRequest{}
 | |
| 	mi := &file_api_client_proto_msgTypes[24]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *UpdateProxyConfigRequest) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*UpdateProxyConfigRequest) ProtoMessage() {}
 | |
| 
 | |
| func (x *UpdateProxyConfigRequest) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[24]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use UpdateProxyConfigRequest.ProtoReflect.Descriptor instead.
 | |
| func (*UpdateProxyConfigRequest) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{24}
 | |
| }
 | |
| 
 | |
| func (x *UpdateProxyConfigRequest) GetClientId() string {
 | |
| 	if x != nil && x.ClientId != nil {
 | |
| 		return *x.ClientId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (x *UpdateProxyConfigRequest) GetServerId() string {
 | |
| 	if x != nil && x.ServerId != nil {
 | |
| 		return *x.ServerId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (x *UpdateProxyConfigRequest) GetName() string {
 | |
| 	if x != nil && x.Name != nil {
 | |
| 		return *x.Name
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (x *UpdateProxyConfigRequest) GetConfig() []byte {
 | |
| 	if x != nil {
 | |
| 		return x.Config
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type UpdateProxyConfigResponse struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Status *Status `protobuf:"bytes,1,opt,name=status,proto3,oneof" json:"status,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *UpdateProxyConfigResponse) Reset() {
 | |
| 	*x = UpdateProxyConfigResponse{}
 | |
| 	mi := &file_api_client_proto_msgTypes[25]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *UpdateProxyConfigResponse) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*UpdateProxyConfigResponse) ProtoMessage() {}
 | |
| 
 | |
| func (x *UpdateProxyConfigResponse) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[25]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use UpdateProxyConfigResponse.ProtoReflect.Descriptor instead.
 | |
| func (*UpdateProxyConfigResponse) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{25}
 | |
| }
 | |
| 
 | |
| func (x *UpdateProxyConfigResponse) GetStatus() *Status {
 | |
| 	if x != nil {
 | |
| 		return x.Status
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type GetProxyConfigRequest struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	ClientId *string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3,oneof" json:"client_id,omitempty"`
 | |
| 	ServerId *string `protobuf:"bytes,2,opt,name=server_id,json=serverId,proto3,oneof" json:"server_id,omitempty"`
 | |
| 	Name     *string `protobuf:"bytes,3,opt,name=name,proto3,oneof" json:"name,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *GetProxyConfigRequest) Reset() {
 | |
| 	*x = GetProxyConfigRequest{}
 | |
| 	mi := &file_api_client_proto_msgTypes[26]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *GetProxyConfigRequest) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*GetProxyConfigRequest) ProtoMessage() {}
 | |
| 
 | |
| func (x *GetProxyConfigRequest) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[26]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use GetProxyConfigRequest.ProtoReflect.Descriptor instead.
 | |
| func (*GetProxyConfigRequest) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{26}
 | |
| }
 | |
| 
 | |
| func (x *GetProxyConfigRequest) GetClientId() string {
 | |
| 	if x != nil && x.ClientId != nil {
 | |
| 		return *x.ClientId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (x *GetProxyConfigRequest) GetServerId() string {
 | |
| 	if x != nil && x.ServerId != nil {
 | |
| 		return *x.ServerId
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (x *GetProxyConfigRequest) GetName() string {
 | |
| 	if x != nil && x.Name != nil {
 | |
| 		return *x.Name
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| type GetProxyConfigResponse struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Status        *Status             `protobuf:"bytes,1,opt,name=status,proto3,oneof" json:"status,omitempty"`
 | |
| 	ProxyConfig   *ProxyConfig        `protobuf:"bytes,2,opt,name=proxy_config,json=proxyConfig,proto3,oneof" json:"proxy_config,omitempty"`
 | |
| 	WorkingStatus *ProxyWorkingStatus `protobuf:"bytes,3,opt,name=working_status,json=workingStatus,proto3,oneof" json:"working_status,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *GetProxyConfigResponse) Reset() {
 | |
| 	*x = GetProxyConfigResponse{}
 | |
| 	mi := &file_api_client_proto_msgTypes[27]
 | |
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 	ms.StoreMessageInfo(mi)
 | |
| }
 | |
| 
 | |
| func (x *GetProxyConfigResponse) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*GetProxyConfigResponse) ProtoMessage() {}
 | |
| 
 | |
| func (x *GetProxyConfigResponse) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_api_client_proto_msgTypes[27]
 | |
| 	if x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use GetProxyConfigResponse.ProtoReflect.Descriptor instead.
 | |
| func (*GetProxyConfigResponse) Descriptor() ([]byte, []int) {
 | |
| 	return file_api_client_proto_rawDescGZIP(), []int{27}
 | |
| }
 | |
| 
 | |
| func (x *GetProxyConfigResponse) GetStatus() *Status {
 | |
| 	if x != nil {
 | |
| 		return x.Status
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (x *GetProxyConfigResponse) GetProxyConfig() *ProxyConfig {
 | |
| 	if x != nil {
 | |
| 		return x.ProxyConfig
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (x *GetProxyConfigResponse) GetWorkingStatus() *ProxyWorkingStatus {
 | |
| 	if x != nil {
 | |
| 		return x.WorkingStatus
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| var File_api_client_proto protoreflect.FileDescriptor
 | |
| 
 | |
| var file_api_client_proto_rawDesc = []byte{
 | |
| 	0x0a, 0x10, 0x61, 0x70, 0x69, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f,
 | |
| 	0x74, 0x6f, 0x12, 0x0a, 0x61, 0x70, 0x69, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x1a, 0x0c,
 | |
| 	0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x43, 0x0a, 0x11,
 | |
| 	0x49, 0x6e, 0x69, 0x74, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
 | |
| 	0x74, 0x12, 0x20, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01,
 | |
| 	0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
 | |
| 	0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69,
 | |
| 	0x64, 0x22, 0x7c, 0x0a, 0x12, 0x49, 0x6e, 0x69, 0x74, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x52,
 | |
| 	0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
 | |
| 	0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
 | |
| 	0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x48, 0x00, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
 | |
| 	0x73, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69,
 | |
| 	0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e,
 | |
| 	0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75,
 | |
| 	0x73, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x22,
 | |
| 	0x91, 0x01, 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x73, 0x52,
 | |
| 	0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x01,
 | |
| 	0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12,
 | |
| 	0x20, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01,
 | |
| 	0x28, 0x05, 0x48, 0x01, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x88, 0x01,
 | |
| 	0x01, 0x12, 0x1d, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01,
 | |
| 	0x28, 0x09, 0x48, 0x02, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x88, 0x01, 0x01,
 | |
| 	0x42, 0x07, 0x0a, 0x05, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x70, 0x61,
 | |
| 	0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6b, 0x65, 0x79, 0x77,
 | |
| 	0x6f, 0x72, 0x64, 0x22, 0x9c, 0x01, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x6c, 0x69, 0x65,
 | |
| 	0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73,
 | |
| 	0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x63, 0x6f,
 | |
| 	0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x48, 0x00, 0x52, 0x06, 0x73,
 | |
| 	0x74, 0x61, 0x74, 0x75, 0x73, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61,
 | |
| 	0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x48, 0x01, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c,
 | |
| 	0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x07, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x03,
 | |
| 	0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6c,
 | |
| 	0x69, 0x65, 0x6e, 0x74, 0x52, 0x07, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x73, 0x42, 0x09, 0x0a,
 | |
| 	0x07, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x74, 0x6f, 0x74,
 | |
| 	0x61, 0x6c, 0x22, 0x72, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x52,
 | |
| 	0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74,
 | |
| 	0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x63, 0x6c, 0x69,
 | |
| 	0x65, 0x6e, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x73, 0x65, 0x72, 0x76,
 | |
| 	0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x08, 0x73,
 | |
| 	0x65, 0x72, 0x76, 0x65, 0x72, 0x49, 0x64, 0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x63,
 | |
| 	0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x73, 0x65, 0x72,
 | |
| 	0x76, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x22, 0x83, 0x01, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x43, 0x6c,
 | |
| 	0x69, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06,
 | |
| 	0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x63,
 | |
| 	0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x48, 0x00, 0x52, 0x06,
 | |
| 	0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x88, 0x01, 0x01, 0x12, 0x2b, 0x0a, 0x06, 0x63, 0x6c, 0x69,
 | |
| 	0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
 | |
| 	0x6f, 0x6e, 0x2e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x48, 0x01, 0x52, 0x06, 0x63, 0x6c, 0x69,
 | |
| 	0x65, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75,
 | |
| 	0x73, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x22, 0x45, 0x0a, 0x13,
 | |
| 	0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75,
 | |
| 	0x65, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64,
 | |
| 	0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74,
 | |
| 	0x49, 0x64, 0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74,
 | |
| 	0x5f, 0x69, 0x64, 0x22, 0x4e, 0x0a, 0x14, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6c, 0x69,
 | |
| 	0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73,
 | |
| 	0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x63, 0x6f,
 | |
| 	0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x48, 0x00, 0x52, 0x06, 0x73,
 | |
| 	0x74, 0x61, 0x74, 0x75, 0x73, 0x88, 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x74, 0x61,
 | |
| 	0x74, 0x75, 0x73, 0x22, 0xc6, 0x01, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x52,
 | |
| 	0x50, 0x43, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x09, 0x63, 0x6c, 0x69,
 | |
| 	0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08,
 | |
| 	0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x73,
 | |
| 	0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01,
 | |
| 	0x52, 0x08, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a,
 | |
| 	0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x02, 0x52,
 | |
| 	0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x63, 0x6f,
 | |
| 	0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x07, 0x63,
 | |
| 	0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x63, 0x6c,
 | |
| 	0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x73, 0x65, 0x72, 0x76,
 | |
| 	0x65, 0x72, 0x5f, 0x69, 0x64, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
 | |
| 	0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x22, 0x4c, 0x0a, 0x12,
 | |
| 	0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x52, 0x50, 0x43, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
 | |
| 	0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01,
 | |
| 	0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x74, 0x61, 0x74,
 | |
| 	0x75, 0x73, 0x48, 0x00, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x88, 0x01, 0x01, 0x42,
 | |
| 	0x09, 0x0a, 0x07, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x43, 0x0a, 0x11, 0x52, 0x65,
 | |
| 	0x6d, 0x6f, 0x76, 0x65, 0x46, 0x52, 0x50, 0x43, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
 | |
| 	0x20, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
 | |
| 	0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x88, 0x01,
 | |
| 	0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x22,
 | |
| 	0x4c, 0x0a, 0x12, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x46, 0x52, 0x50, 0x43, 0x52, 0x65, 0x73,
 | |
| 	0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
 | |
| 	0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53,
 | |
| 	0x74, 0x61, 0x74, 0x75, 0x73, 0x48, 0x00, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x88,
 | |
| 	0x01, 0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x41, 0x0a,
 | |
| 	0x0f, 0x53, 0x74, 0x6f, 0x70, 0x46, 0x52, 0x50, 0x43, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
 | |
| 	0x12, 0x20, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
 | |
| 	0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x88,
 | |
| 	0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64,
 | |
| 	0x22, 0x4a, 0x0a, 0x10, 0x53, 0x74, 0x6f, 0x70, 0x46, 0x52, 0x50, 0x43, 0x52, 0x65, 0x73, 0x70,
 | |
| 	0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01,
 | |
| 	0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x74,
 | |
| 	0x61, 0x74, 0x75, 0x73, 0x48, 0x00, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x88, 0x01,
 | |
| 	0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x42, 0x0a, 0x10,
 | |
| 	0x53, 0x74, 0x61, 0x72, 0x74, 0x46, 0x52, 0x50, 0x43, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
 | |
| 	0x12, 0x20, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
 | |
| 	0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x88,
 | |
| 	0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64,
 | |
| 	0x22, 0x4b, 0x0a, 0x11, 0x53, 0x74, 0x61, 0x72, 0x74, 0x46, 0x52, 0x50, 0x43, 0x52, 0x65, 0x73,
 | |
| 	0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
 | |
| 	0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53,
 | |
| 	0x74, 0x61, 0x74, 0x75, 0x73, 0x48, 0x00, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x88,
 | |
| 	0x01, 0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x50, 0x0a,
 | |
| 	0x1e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x53, 0x74, 0x61, 0x74, 0x73, 0x42, 0x79,
 | |
| 	0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
 | |
| 	0x20, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
 | |
| 	0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x88, 0x01,
 | |
| 	0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x22,
 | |
| 	0x8d, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x53, 0x74, 0x61, 0x74,
 | |
| 	0x73, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x44, 0x52, 0x65, 0x73, 0x70, 0x6f,
 | |
| 	0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20,
 | |
| 	0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x74, 0x61,
 | |
| 	0x74, 0x75, 0x73, 0x48, 0x00, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x88, 0x01, 0x01,
 | |
| 	0x12, 0x32, 0x0a, 0x0b, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x73, 0x18,
 | |
| 	0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
 | |
| 	0x72, 0x6f, 0x78, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x49,
 | |
| 	0x6e, 0x66, 0x6f, 0x73, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22,
 | |
| 	0xf6, 0x01, 0x0a, 0x17, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x43, 0x6f, 0x6e,
 | |
| 	0x66, 0x69, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x04, 0x70,
 | |
| 	0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x04, 0x70, 0x61, 0x67,
 | |
| 	0x65, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a,
 | |
| 	0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x48, 0x01, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53,
 | |
| 	0x69, 0x7a, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72,
 | |
| 	0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f,
 | |
| 	0x72, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f,
 | |
| 	0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65,
 | |
| 	0x6e, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x73, 0x65, 0x72, 0x76, 0x65,
 | |
| 	0x72, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x08, 0x73, 0x65,
 | |
| 	0x72, 0x76, 0x65, 0x72, 0x49, 0x64, 0x88, 0x01, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x70, 0x61,
 | |
| 	0x67, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65,
 | |
| 	0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x42, 0x0c, 0x0a, 0x0a,
 | |
| 	0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x73,
 | |
| 	0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x22, 0xb1, 0x01, 0x0a, 0x18, 0x4c, 0x69, 0x73,
 | |
| 	0x74, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x52, 0x65, 0x73,
 | |
| 	0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
 | |
| 	0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53,
 | |
| 	0x74, 0x61, 0x74, 0x75, 0x73, 0x48, 0x00, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x88,
 | |
| 	0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28,
 | |
| 	0x05, 0x48, 0x01, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x38, 0x0a,
 | |
| 	0x0d, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x18, 0x03,
 | |
| 	0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72,
 | |
| 	0x6f, 0x78, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x78, 0x79,
 | |
| 	0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x74, 0x61, 0x74,
 | |
| 	0x75, 0x73, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x22, 0xd3, 0x01, 0x0a,
 | |
| 	0x18, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x43, 0x6f, 0x6e, 0x66,
 | |
| 	0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x09, 0x63, 0x6c, 0x69,
 | |
| 	0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08,
 | |
| 	0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x73,
 | |
| 	0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01,
 | |
| 	0x52, 0x08, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a,
 | |
| 	0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x02, 0x52,
 | |
| 	0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x88, 0x01, 0x01, 0x12, 0x21, 0x0a, 0x09, 0x6f, 0x76,
 | |
| 	0x65, 0x72, 0x77, 0x72, 0x69, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x48, 0x03, 0x52,
 | |
| 	0x09, 0x6f, 0x76, 0x65, 0x72, 0x77, 0x72, 0x69, 0x74, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a,
 | |
| 	0x0a, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f,
 | |
| 	0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x63, 0x6f,
 | |
| 	0x6e, 0x66, 0x69, 0x67, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x77, 0x72, 0x69,
 | |
| 	0x74, 0x65, 0x22, 0x53, 0x0a, 0x19, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x78,
 | |
| 	0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
 | |
| 	0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
 | |
| 	0x0e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x48,
 | |
| 	0x00, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x88, 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07,
 | |
| 	0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x9c, 0x01, 0x0a, 0x18, 0x44, 0x65, 0x6c, 0x65,
 | |
| 	0x74, 0x65, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71,
 | |
| 	0x75, 0x65, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69,
 | |
| 	0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e,
 | |
| 	0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
 | |
| 	0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x08, 0x73, 0x65, 0x72,
 | |
| 	0x76, 0x65, 0x72, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65,
 | |
| 	0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01,
 | |
| 	0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x42,
 | |
| 	0x0c, 0x0a, 0x0a, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x42, 0x07, 0x0a,
 | |
| 	0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x53, 0x0a, 0x19, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
 | |
| 	0x50, 0x72, 0x6f, 0x78, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f,
 | |
| 	0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20,
 | |
| 	0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x74, 0x61,
 | |
| 	0x74, 0x75, 0x73, 0x48, 0x00, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x88, 0x01, 0x01,
 | |
| 	0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xc4, 0x01, 0x0a, 0x18,
 | |
| 	0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69,
 | |
| 	0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65,
 | |
| 	0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x63,
 | |
| 	0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x73, 0x65,
 | |
| 	0x72, 0x76, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52,
 | |
| 	0x08, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04,
 | |
| 	0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x04, 0x6e, 0x61,
 | |
| 	0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18,
 | |
| 	0x04, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x03, 0x52, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x88,
 | |
| 	0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64,
 | |
| 	0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x42, 0x07,
 | |
| 	0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x63, 0x6f, 0x6e, 0x66,
 | |
| 	0x69, 0x67, 0x22, 0x53, 0x0a, 0x19, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x78,
 | |
| 	0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
 | |
| 	0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
 | |
| 	0x0e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x48,
 | |
| 	0x00, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x88, 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07,
 | |
| 	0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x99, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x50,
 | |
| 	0x72, 0x6f, 0x78, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
 | |
| 	0x74, 0x12, 0x20, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01,
 | |
| 	0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
 | |
| 	0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x69, 0x64,
 | |
| 	0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x08, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
 | |
| 	0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20,
 | |
| 	0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0c,
 | |
| 	0x0a, 0x0a, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a,
 | |
| 	0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e,
 | |
| 	0x61, 0x6d, 0x65, 0x22, 0xf9, 0x01, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x78, 0x79,
 | |
| 	0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b,
 | |
| 	0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e,
 | |
| 	0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x48, 0x00,
 | |
| 	0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3b, 0x0a, 0x0c, 0x70,
 | |
| 	0x72, 0x6f, 0x78, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28,
 | |
| 	0x0b, 0x32, 0x13, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x78, 0x79,
 | |
| 	0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x43,
 | |
| 	0x6f, 0x6e, 0x66, 0x69, 0x67, 0x88, 0x01, 0x01, 0x12, 0x46, 0x0a, 0x0e, 0x77, 0x6f, 0x72, 0x6b,
 | |
| 	0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
 | |
| 	0x32, 0x1a, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x57,
 | |
| 	0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x48, 0x02, 0x52, 0x0d,
 | |
| 	0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x88, 0x01, 0x01,
 | |
| 	0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x0f, 0x0a, 0x0d, 0x5f,
 | |
| 	0x70, 0x72, 0x6f, 0x78, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x42, 0x11, 0x0a, 0x0f,
 | |
| 	0x5f, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42,
 | |
| 	0x07, 0x5a, 0x05, 0x2e, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
 | |
| }
 | |
| 
 | |
| var (
 | |
| 	file_api_client_proto_rawDescOnce sync.Once
 | |
| 	file_api_client_proto_rawDescData = file_api_client_proto_rawDesc
 | |
| )
 | |
| 
 | |
| func file_api_client_proto_rawDescGZIP() []byte {
 | |
| 	file_api_client_proto_rawDescOnce.Do(func() {
 | |
| 		file_api_client_proto_rawDescData = protoimpl.X.CompressGZIP(file_api_client_proto_rawDescData)
 | |
| 	})
 | |
| 	return file_api_client_proto_rawDescData
 | |
| }
 | |
| 
 | |
| var file_api_client_proto_msgTypes = make([]protoimpl.MessageInfo, 28)
 | |
| var file_api_client_proto_goTypes = []any{
 | |
| 	(*InitClientRequest)(nil),               // 0: api_client.InitClientRequest
 | |
| 	(*InitClientResponse)(nil),              // 1: api_client.InitClientResponse
 | |
| 	(*ListClientsRequest)(nil),              // 2: api_client.ListClientsRequest
 | |
| 	(*ListClientsResponse)(nil),             // 3: api_client.ListClientsResponse
 | |
| 	(*GetClientRequest)(nil),                // 4: api_client.GetClientRequest
 | |
| 	(*GetClientResponse)(nil),               // 5: api_client.GetClientResponse
 | |
| 	(*DeleteClientRequest)(nil),             // 6: api_client.DeleteClientRequest
 | |
| 	(*DeleteClientResponse)(nil),            // 7: api_client.DeleteClientResponse
 | |
| 	(*UpdateFRPCRequest)(nil),               // 8: api_client.UpdateFRPCRequest
 | |
| 	(*UpdateFRPCResponse)(nil),              // 9: api_client.UpdateFRPCResponse
 | |
| 	(*RemoveFRPCRequest)(nil),               // 10: api_client.RemoveFRPCRequest
 | |
| 	(*RemoveFRPCResponse)(nil),              // 11: api_client.RemoveFRPCResponse
 | |
| 	(*StopFRPCRequest)(nil),                 // 12: api_client.StopFRPCRequest
 | |
| 	(*StopFRPCResponse)(nil),                // 13: api_client.StopFRPCResponse
 | |
| 	(*StartFRPCRequest)(nil),                // 14: api_client.StartFRPCRequest
 | |
| 	(*StartFRPCResponse)(nil),               // 15: api_client.StartFRPCResponse
 | |
| 	(*GetProxyStatsByClientIDRequest)(nil),  // 16: api_client.GetProxyStatsByClientIDRequest
 | |
| 	(*GetProxyStatsByClientIDResponse)(nil), // 17: api_client.GetProxyStatsByClientIDResponse
 | |
| 	(*ListProxyConfigsRequest)(nil),         // 18: api_client.ListProxyConfigsRequest
 | |
| 	(*ListProxyConfigsResponse)(nil),        // 19: api_client.ListProxyConfigsResponse
 | |
| 	(*CreateProxyConfigRequest)(nil),        // 20: api_client.CreateProxyConfigRequest
 | |
| 	(*CreateProxyConfigResponse)(nil),       // 21: api_client.CreateProxyConfigResponse
 | |
| 	(*DeleteProxyConfigRequest)(nil),        // 22: api_client.DeleteProxyConfigRequest
 | |
| 	(*DeleteProxyConfigResponse)(nil),       // 23: api_client.DeleteProxyConfigResponse
 | |
| 	(*UpdateProxyConfigRequest)(nil),        // 24: api_client.UpdateProxyConfigRequest
 | |
| 	(*UpdateProxyConfigResponse)(nil),       // 25: api_client.UpdateProxyConfigResponse
 | |
| 	(*GetProxyConfigRequest)(nil),           // 26: api_client.GetProxyConfigRequest
 | |
| 	(*GetProxyConfigResponse)(nil),          // 27: api_client.GetProxyConfigResponse
 | |
| 	(*Status)(nil),                          // 28: common.Status
 | |
| 	(*Client)(nil),                          // 29: common.Client
 | |
| 	(*ProxyInfo)(nil),                       // 30: common.ProxyInfo
 | |
| 	(*ProxyConfig)(nil),                     // 31: common.ProxyConfig
 | |
| 	(*ProxyWorkingStatus)(nil),              // 32: common.ProxyWorkingStatus
 | |
| }
 | |
| var file_api_client_proto_depIdxs = []int32{
 | |
| 	28, // 0: api_client.InitClientResponse.status:type_name -> common.Status
 | |
| 	28, // 1: api_client.ListClientsResponse.status:type_name -> common.Status
 | |
| 	29, // 2: api_client.ListClientsResponse.clients:type_name -> common.Client
 | |
| 	28, // 3: api_client.GetClientResponse.status:type_name -> common.Status
 | |
| 	29, // 4: api_client.GetClientResponse.client:type_name -> common.Client
 | |
| 	28, // 5: api_client.DeleteClientResponse.status:type_name -> common.Status
 | |
| 	28, // 6: api_client.UpdateFRPCResponse.status:type_name -> common.Status
 | |
| 	28, // 7: api_client.RemoveFRPCResponse.status:type_name -> common.Status
 | |
| 	28, // 8: api_client.StopFRPCResponse.status:type_name -> common.Status
 | |
| 	28, // 9: api_client.StartFRPCResponse.status:type_name -> common.Status
 | |
| 	28, // 10: api_client.GetProxyStatsByClientIDResponse.status:type_name -> common.Status
 | |
| 	30, // 11: api_client.GetProxyStatsByClientIDResponse.proxy_infos:type_name -> common.ProxyInfo
 | |
| 	28, // 12: api_client.ListProxyConfigsResponse.status:type_name -> common.Status
 | |
| 	31, // 13: api_client.ListProxyConfigsResponse.proxy_configs:type_name -> common.ProxyConfig
 | |
| 	28, // 14: api_client.CreateProxyConfigResponse.status:type_name -> common.Status
 | |
| 	28, // 15: api_client.DeleteProxyConfigResponse.status:type_name -> common.Status
 | |
| 	28, // 16: api_client.UpdateProxyConfigResponse.status:type_name -> common.Status
 | |
| 	28, // 17: api_client.GetProxyConfigResponse.status:type_name -> common.Status
 | |
| 	31, // 18: api_client.GetProxyConfigResponse.proxy_config:type_name -> common.ProxyConfig
 | |
| 	32, // 19: api_client.GetProxyConfigResponse.working_status:type_name -> common.ProxyWorkingStatus
 | |
| 	20, // [20:20] is the sub-list for method output_type
 | |
| 	20, // [20:20] is the sub-list for method input_type
 | |
| 	20, // [20:20] is the sub-list for extension type_name
 | |
| 	20, // [20:20] is the sub-list for extension extendee
 | |
| 	0,  // [0:20] is the sub-list for field type_name
 | |
| }
 | |
| 
 | |
| func init() { file_api_client_proto_init() }
 | |
| func file_api_client_proto_init() {
 | |
| 	if File_api_client_proto != nil {
 | |
| 		return
 | |
| 	}
 | |
| 	file_common_proto_init()
 | |
| 	file_api_client_proto_msgTypes[0].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[1].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[2].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[3].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[4].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[5].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[6].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[7].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[8].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[9].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[10].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[11].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[12].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[13].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[14].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[15].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[16].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[17].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[18].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[19].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[20].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[21].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[22].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[23].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[24].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[25].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[26].OneofWrappers = []any{}
 | |
| 	file_api_client_proto_msgTypes[27].OneofWrappers = []any{}
 | |
| 	type x struct{}
 | |
| 	out := protoimpl.TypeBuilder{
 | |
| 		File: protoimpl.DescBuilder{
 | |
| 			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
 | |
| 			RawDescriptor: file_api_client_proto_rawDesc,
 | |
| 			NumEnums:      0,
 | |
| 			NumMessages:   28,
 | |
| 			NumExtensions: 0,
 | |
| 			NumServices:   0,
 | |
| 		},
 | |
| 		GoTypes:           file_api_client_proto_goTypes,
 | |
| 		DependencyIndexes: file_api_client_proto_depIdxs,
 | |
| 		MessageInfos:      file_api_client_proto_msgTypes,
 | |
| 	}.Build()
 | |
| 	File_api_client_proto = out.File
 | |
| 	file_api_client_proto_rawDesc = nil
 | |
| 	file_api_client_proto_goTypes = nil
 | |
| 	file_api_client_proto_depIdxs = nil
 | |
| }
 |